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