diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-06-13 12:42:52 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-06-13 12:42:52 +0200 |
commit | f6f5f31067cdee2d7003d8209361ac9e5b6975c5 (patch) | |
tree | c967ca817c31fd5681032d1c545f0c812aabb236 /libcppbuild.h | |
parent | 6bcbf18a6a67707c13d66b96770c8b210a45b9f4 (diff) |
Use vfork/exec instead of system for compiler invocation.
Diffstat (limited to 'libcppbuild.h')
-rw-r--r-- | libcppbuild.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libcppbuild.h b/libcppbuild.h index e9599fc..e4a7801 100644 --- a/libcppbuild.h +++ b/libcppbuild.h @@ -7,8 +7,8 @@ struct BuildConfiguration { std::string target; std::vector<std::string> sources; - std::string cxxflags; - std::string cflags; + std::vector<std::string> cxxflags; + std::vector<std::string> cflags; std::string ldflags; }; |