root/trunk/CMakeLists.txt

Revision 151, 492 bytes (checked in by diane, 2 years ago)

Tell CMake about some of the C++ tests.

One of the paircomp c++ tests isn't enabled because it uses
hardcoded paths--which doesn't work with out of source builds.

Also there are some problems getting CMake to properly run the python
tests. But hey, running some tests is bettern than running no tests.

Line 
1 #set(CMAKE_VERBOSE_MAKEFILE ON)
2 # include local customizations
3 SET (CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR})
4
5 Project(FRII-tree)
6 ENABLE_TESTING()
7
8 subdirs(xml/sister.c++ cartwheel-clients/canal.c++ motility paircomp FRII)
9
10 ### global configuration for C++ compilation ###
11
12 # on windows/cygwin+gcc, add '-mwindows' to everything!  Also see build
13 # instructions on cartwheel.idyll.org for how to build FLTK properly.
14
15 if(WIN32)
16    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mwindows")
17 endif(WIN32)
Note: See TracBrowser for help on using the browser.