faragon / libsrt

libsrt is a C library for writing fast and safe C code, faster. It provides string, vector, bit set, set, map, hash set, and hash map handling. Suitable for soft and hard real-time. Allows both heap and stack allocation. *BETA* (API still can change: suggestions are welcome)
https://faragon.github.io/libsrt.html
BSD 3-Clause "New" or "Revised" License
547 stars 48 forks source link

Use a build system like CMake or SCons #29

Open SarahCosmosys opened 4 years ago

SarahCosmosys commented 4 years ago

Using a build system like CMake or SCons would allow more building options and integration. It would also help newer users build and contribute the library.

CMake is more standard than SCons or even automake and would allow for better integration with most projects. CMake would also allow for better cross-platform and cross-compiler building. Its also rather simple and very powerful allowing new users to very easily use it. https://cmake.org/

SCons is less mainstream than CMake however it is still very powerful and simple to use. It uses python for the build script allowing you to write very powerful build scripts to build all kinds of programs. https://scons.org/

faragon commented 4 years ago

Hi, thank you, I'll consider your suggestion.