23 lines
858 B
CMake
23 lines
858 B
CMake
# Lesson 3
|
|
|
|
######################################################################################
|
|
### 0) Define files
|
|
######################################################################################
|
|
|
|
set(files FlowShopEA2)
|
|
|
|
######################################################################################
|
|
### 1) Create the lesson
|
|
######################################################################################
|
|
|
|
add_lesson(moeo Lesson3 "${files}")
|
|
|
|
######################################################################################
|
|
### 2) Include dependencies
|
|
######################################################################################
|
|
|
|
include_directories(${EO_SRC_DIR}/src)
|
|
include_directories(${MOEO_SRC_DIR}/src)
|
|
include_directories(${FLOWSHOP_SRC_DIR})
|
|
|
|
target_link_libraries(FlowShopEA2 moeo flowshop eo eoutils)
|