diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-06-11 19:07:09 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-06-11 19:07:16 +0200 |
commit | 474ce1322f3c13fe414b5e2201d82a4136a947da (patch) | |
tree | 841d4771e451d646c7a83384a148a7b791f1ff44 /libcppbuild.h |
Simple build config with dependency tracking.
Diffstat (limited to 'libcppbuild.h')
-rw-r--r-- | libcppbuild.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libcppbuild.h b/libcppbuild.h new file mode 100644 index 0000000..11a8eb7 --- /dev/null +++ b/libcppbuild.h @@ -0,0 +1,12 @@ +#pragma once + +#include <string> +#include <vector> + +struct BuildConfiguration +{ + std::string target; + std::vector<std::string> sources; +}; + +BuildConfiguration configs(); |