diff options
Diffstat (limited to 'pymake.conf')
-rw-r--r-- | pymake.conf | 41 |
1 files changed, 24 insertions, 17 deletions
diff --git a/pymake.conf b/pymake.conf index 810e3c6..ce0c52a 100644 --- a/pymake.conf +++ b/pymake.conf | |||
@@ -6,23 +6,30 @@ DIR: src | |||
6 | COMMAND: lib | 6 | COMMAND: lib |
7 | OUTPUT: libbu++.a | 7 | OUTPUT: libbu++.a |
8 | 8 | ||
9 | [DIRBUILD] | 9 | # |
10 | COMMAND: exe | 10 | # Uncomment this if you want to build the tests, these don't rely on anything |
11 | OUTPUT: tests/{NAME} | 11 | # that libbu++ doesn't rely on. |
12 | ROOT: src/test | 12 | # |
13 | LDFLAGS: -L. -lbu++ | 13 | #[DIRBUILD] |
14 | CXXFLAGS: -Isrc -Isrc/test | 14 | #COMMAND: exe |
15 | 15 | #OUTPUT: tests/{NAME} | |
16 | [OVERRIDE] | 16 | #ROOT: src/test |
17 | FILE: tests/plugin | 17 | #LDFLAGS: -L. -lbu++ |
18 | LDFLAGS: -ldl | 18 | #CXXFLAGS: -Isrc -Isrc/test |
19 | 19 | # | |
20 | [DIRBUILD] | 20 | #[OVERRIDE] |
21 | COMMAND: exe | 21 | #FILE: tests/plugin |
22 | OUTPUT: unit/{NAME} | 22 | #LDFLAGS: -ldl |
23 | ROOT: src/unit | 23 | |
24 | LDFLAGS: -L. -lbu++ -lcpptest | 24 | # |
25 | CXXFLAGS: -Isrc | 25 | # Uncomment this if you have cpptest and want to build the unit tests |
26 | # | ||
27 | #[DIRBUILD] | ||
28 | #COMMAND: exe | ||
29 | #OUTPUT: unit/{NAME} | ||
30 | #ROOT: src/unit | ||
31 | #LDFLAGS: -L. -lbu++ -lcpptest | ||
32 | #CXXFLAGS: -Isrc | ||
26 | 33 | ||
27 | [TRIGGER] | 34 | [TRIGGER] |
28 | INPUT: .cpp #take input of *.cpp files | 35 | INPUT: .cpp #take input of *.cpp files |