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)
|