diff options
| author | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-10-09 07:48:50 +0200 |
|---|---|---|
| committer | Amlal EL Mahrouss <amlalelmahrouss@icloud.com> | 2024-10-09 07:48:50 +0200 |
| commit | 904a70bf75ba9f5320cac611a2fab3f1fbd02425 (patch) | |
| tree | 3641832c9594993a51aab995258a4acf039c51ac /tests | |
| parent | 35bf67c51b620b96827b75b0548f56d08415bb90 (diff) | |
IMP: Implement TOML C++ build system it's not perfect, but it's here.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/example.toml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/tests/example.toml b/tests/example.toml index 64e38d2..1efa156 100644 --- a/tests/example.toml +++ b/tests/example.toml @@ -1,5 +1,7 @@ -[Linker] -output_name = "example.elf" -[Sources] -source_file = ["*.cxx"] - +[CPlusPlus] +cxx_compiler = "g++" +cxx_output_name = "example.elf" +cxx_source_files = ["*.cxx"] +cxx_include_directories = ["inc", "vendor"] +cxx_compiler_flags = ["-std=c++20"] +cxx_linker_flags = ["-lstdc++"] |
