1.1 --- a/CMakeLists.txt Fri Nov 26 17:59:31 2010 +0100
1.2 +++ b/CMakeLists.txt Fri Nov 26 19:23:47 2010 +0100
1.3 @@ -61,25 +61,6 @@
1.4 ${LEMON_INCLUDE_DIRS}
1.5 )
1.6
1.7 -## Here we define an executable target. Its name is 'lemon-project' and
1.8 -## is compiled from 'main.cc'. You can add more source files separated
1.9 -## with whitespaces (including newlines). If you want to build more
1.10 -## executables, simple repeat (and edit) the following ADD_EXECUTABLE and
1.11 -## TARGET_LINK_LIBRARIES statements.
1.12 -
1.13 -ADD_EXECUTABLE(lemon-project main.cc)
1.14 -TARGET_LINK_LIBRARIES(lemon-project ${LEMON_LIBRARIES})
1.15 -
1.16 -## This tells cmake to install 'lemon-project' to $PREFIX/bin when
1.17 -## 'make install' is executed. You can give more targets separated
1.18 -## by whitespaces.
1.19 -
1.20 -INSTALL(
1.21 - TARGETS lemon-project
1.22 - RUNTIME DESTINATION bin
1.23 - COMPONENT bin
1.24 -)
1.25 -
1.26 ## Sometimes MSVC overwhelms you with compiler warnings which are impossible to
1.27 ## avoid. Then comment out these sections. Normally you won't need it as the
1.28 ## LEMON include headers suppress these warnings anyway.
1.29 @@ -103,6 +84,8 @@
1.30
1.31 ADD_SUBDIRECTORY(doc)
1.32
1.33 +ADD_SUBDIRECTORY(generators/netgen)
1.34 +
1.35 #######################################################################
1.36 ## CPACK configuration
1.37 ##