summaryrefslogtreecommitdiff
path: root/build.ninja
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2023-04-02 12:46:44 +0200
committerEugen Wissner <belka@caraus.de>2023-04-02 12:46:44 +0200
commitae0048ef3d03c1511f2e12e0fdb5ae8d28061dab (patch)
tree8c6ffc8116b66530b4a42d63cc59d9c479cf3eab /build.ninja
parentf46a16b4a0d50b6512df2b312f7f800a9a963ca2 (diff)
downloadslackbuilder-ae0048ef3d03c1511f2e12e0fdb5ae8d28061dab.tar.gz
Add command to clone the source repository
Diffstat (limited to 'build.ninja')
-rw-r--r--build.ninja4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.ninja b/build.ninja
index 0d2507b..81e0472 100644
--- a/build.ninja
+++ b/build.ninja
@@ -3,11 +3,11 @@ rule cxx
description = CXX $out
rule link
- command = g++ -o $out $in
+ command = g++ -o $out $in -lboost_filesystem -lboost_system
description = LINK $out
build build/package.o: cxx src/package.cpp | src/package.h
-build build/command.o: cxx src/command.cpp | src/command.h build/package.o
+build build/command.o: cxx src/command.cpp | src/command.h build/package.o src/config.h
build build/main.o: cxx src/main.cpp