git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@2713 331e1502-861f-0410-8da2-ba01fb791d7f
23 lines
860 B
CMake
23 lines
860 B
CMake
# Lesson 4
|
|
|
|
######################################################################################
|
|
### 0) Define files
|
|
######################################################################################
|
|
|
|
set(files FlowShopDMLS)
|
|
|
|
######################################################################################
|
|
### 1) Create the lesson
|
|
######################################################################################
|
|
|
|
add_lesson(moeo Lesson4 "${files}")
|
|
|
|
include_directories(${EO_SRC_DIR}/src)
|
|
include_directories(${MOEO_SRC_DIR}/src)
|
|
include_directories(${FLOWSHOP_SRC_DIR})
|
|
|
|
######################################################################################
|
|
### 2) Include dependencies
|
|
######################################################################################
|
|
|
|
target_link_libraries(FlowShopDMLS moeo flowshop eo eoutils)
|