Migration from SVN

This commit is contained in:
quemy 2012-08-30 11:30:11 +02:00
commit 8cd56f37db
29069 changed files with 0 additions and 4096888 deletions

View file

@ -1,44 +0,0 @@
######################################################################################
### 0) Include directories
######################################################################################
include_directories(${EO_SRC_DIR})
include_directories(${MO_SRC_DIR}/src)
include_directories(${CMAKE_CURRENT_SOURCE_DIR})
######################################################################################
### 1) Set paths
######################################################################################
set(MOEO_LIB_OUTPUT_PATH ${MOEO_BIN_DIR}/lib)
set(LIBRARY_OUTPUT_PATH ${MOEO_LIB_OUTPUT_PATH})
######################################################################################
### 2) Build lib
######################################################################################
set (MOEO_CORE core/moeoObjectiveVectorTraits.cpp)
add_library(moeo STATIC ${MOEO_CORE})
set(MOEO_VERSION ${GLOBAL_VERSION})
set_target_properties(moeo PROPERTIES VERSION "${MOEO_VERSION}")
install(TARGETS moeo ARCHIVE DESTINATION local/${LIB} COMPONENT libraries)
######################################################################################
### 3) Look for headers
######################################################################################
file(GLOB HDRS moeo)
install(FILES ${HDRS} DESTINATION local/include${INSTALL_SUB_DIR}/moeo COMPONENT headers)
######################################################################################
### 4) Install directories
######################################################################################
install(DIRECTORY acceptCrit algo archive comparator core distance diversity do explorer fitness hybridization metric replacement scalarStuffs selection utils
DESTINATION local/include${INSTALL_SUB_DIR}/moeo
COMPONENT headers
FILES_MATCHING PATTERN "*.h"
)