From a91f2195b4f1774e86c4b6372df0cd360e962f58 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Fri, 7 Jul 2006 18:00:48 +0000 Subject: Updated the pymake.conf file to not build the unit tests and regular tests unless you comment them out. --- pymake.conf | 41 ++++++++++++++++++++++++----------------- 1 file 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 COMMAND: lib OUTPUT: libbu++.a -[DIRBUILD] -COMMAND: exe -OUTPUT: tests/{NAME} -ROOT: src/test -LDFLAGS: -L. -lbu++ -CXXFLAGS: -Isrc -Isrc/test - -[OVERRIDE] -FILE: tests/plugin -LDFLAGS: -ldl - -[DIRBUILD] -COMMAND: exe -OUTPUT: unit/{NAME} -ROOT: src/unit -LDFLAGS: -L. -lbu++ -lcpptest -CXXFLAGS: -Isrc +# +# Uncomment this if you want to build the tests, these don't rely on anything +# that libbu++ doesn't rely on. +# +#[DIRBUILD] +#COMMAND: exe +#OUTPUT: tests/{NAME} +#ROOT: src/test +#LDFLAGS: -L. -lbu++ +#CXXFLAGS: -Isrc -Isrc/test +# +#[OVERRIDE] +#FILE: tests/plugin +#LDFLAGS: -ldl + +# +# Uncomment this if you have cpptest and want to build the unit tests +# +#[DIRBUILD] +#COMMAND: exe +#OUTPUT: unit/{NAME} +#ROOT: src/unit +#LDFLAGS: -L. -lbu++ -lcpptest +#CXXFLAGS: -Isrc [TRIGGER] INPUT: .cpp #take input of *.cpp files -- cgit v1.2.3