ctplt 0.0.1

A package manager + build system for C and C++
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
c_compiler = ["emcc"]
cpp_compiler = ["em++"]
static_linker = ["emar", "qc"]
exe_linker = ["em++"]

[profile.Debug]
c_compile_flags = ["-g", "-O0", "-D_DEBUG"]
cpp_compile_flags = ["-g", "-O0", "-D_DEBUG"]

[profile.Release]
c_compile_flags   = ["-O3", "-DNDEBUG"]
cpp_compile_flags = ["-O3", "-DNDEBUG"]