Cmake configuration modified

This commit is contained in:
paradiseo 2009-01-14 14:50:46 +00:00
commit 080f98bffa
19 changed files with 16 additions and 201 deletions

View file

@ -1,14 +1,9 @@
######################################################################################
### 1) Include the sources
######################################################################################
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR})
######################################################################################
######################################################################################
### 2) Define the eo target
######################################################################################
@ -26,23 +21,24 @@ SET (EO_SOURCES eoFunctorStore.cpp
ADD_LIBRARY(eo STATIC ${EO_SOURCES})
######################################################################################
######################################################################################
### 3) Optionnal: define your target(s)'s version: no effect for windows
######################################################################################
SET(EO_VERSION ${GLOBAL_VERSION})
SET_TARGET_PROPERTIES(eo PROPERTIES VERSION "${EO_VERSION}")
######################################################################################
######################################################################################
### 4) Where must cmake go now ?
######################################################################################
SUBDIRS(do es ga gp moo other utils) # forget pyeo for the moment
ADD_SUBDIRECTORY(do)
ADD_SUBDIRECTORY(es)
ADD_SUBDIRECTORY(ga)
ADD_SUBDIRECTORY(gp)
ADD_SUBDIRECTORY(moo)
ADD_SUBDIRECTORY(other)
ADD_SUBDIRECTORY(utils)
######################################################################################