2009-06-10 12:08:28 +00:00
|
|
|
# add build targets
|
|
|
|
|
ADD_EXECUTABLE("tutorial_decoupled" tutorial_decoupled.cc)
|
2012-10-19 14:42:37 +02:00
|
|
|
TARGET_LINK_LIBRARIES("tutorial_decoupled" ${EwomsLinkLibraries})
|
2009-06-10 12:08:28 +00:00
|
|
|
|
|
|
|
|
ADD_EXECUTABLE("tutorial_coupled" tutorial_coupled.cc)
|
2012-10-19 14:42:37 +02:00
|
|
|
TARGET_LINK_LIBRARIES("tutorial_coupled" ${EwomsLinkLibraries})
|
2009-06-10 12:08:28 +00:00
|
|
|
|
|
|
|
|
# add required libraries and includes to the build flags
|
2012-10-19 14:42:37 +02:00
|
|
|
LINK_DIRECTORIES(${EwomsLinkDirectories})
|
|
|
|
|
INCLUDE_DIRECTORIES(${EwomsIncludeDirectories})
|
2009-06-10 12:08:28 +00:00
|
|
|
|