diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-07-07 18:00:48 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-07-07 18:00:48 +0000 |
commit | a91f2195b4f1774e86c4b6372df0cd360e962f58 (patch) | |
tree | fa1b2cdf65c3dc9fd235ae711e2c729cb7b6d28d /pymake.conf | |
parent | ffbc905bae8c3bdbdf215e4a0bf2356d8d25027a (diff) | |
download | libbu++-a91f2195b4f1774e86c4b6372df0cd360e962f58.tar.gz libbu++-a91f2195b4f1774e86c4b6372df0cd360e962f58.tar.bz2 libbu++-a91f2195b4f1774e86c4b6372df0cd360e962f58.tar.xz libbu++-a91f2195b4f1774e86c4b6372df0cd360e962f58.zip |
Updated the pymake.conf file to not build the unit tests and regular tests
unless you comment them out.
Diffstat (limited to '')
-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 |