diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-06-13 19:00:13 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2021-06-13 19:00:13 +0200 |
commit | 4f923fbdace27f27421bf18dfc9655b73bd68929 (patch) | |
tree | 7bfe332416020e9e70d807b7ca9b7b3c59bb8f1e /cppbuild.cc | |
parent | 19195e2bbdcd7a0db8f84732ce54b1c9d07c006c (diff) |
Move execution code into its own function and use from all tasks.
Diffstat (limited to 'cppbuild.cc')
-rw-r--r-- | cppbuild.cc | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/cppbuild.cc b/cppbuild.cc index ae6fd8d..3604260 100644 --- a/cppbuild.cc +++ b/cppbuild.cc @@ -161,6 +161,12 @@ BuildConfiguration configs() }, // linker flags - "-lm -lX11 -lXext -pthread -lsndfile", + { + "-lm", + "-lX11", + "-lXext", + "-pthread", + "-lsndfile", + } }; } |