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
13
14
15
c_compiler = ["gcc"]
cpp_compiler = ["g++"]
nasm_assembler = ["nasm", "-felf64"]
static_linker = ["ar", "qc"]
exe_linker = ["g++"]

[profile.Debug]
c_compile_flags = ["-Og", "-g3", "-D_DEBUG"]
cpp_compile_flags = ["-Og", "-g3", "-D_DEBUG"]
nasm_assemble_flags = ["-O0", "-Xgnu"]

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