mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-11-24 10:10:18 -06:00
12 lines
415 B
CMake
12 lines
415 B
CMake
# add build targets
|
|
ADD_EXECUTABLE("tutorial_decoupled" tutorial_decoupled.cc)
|
|
TARGET_LINK_LIBRARIES("tutorial_decoupled" ${DumuxLinkLibraries})
|
|
|
|
ADD_EXECUTABLE("tutorial_coupled" tutorial_coupled.cc)
|
|
TARGET_LINK_LIBRARIES("tutorial_coupled" ${DumuxLinkLibraries})
|
|
|
|
# add required libraries and includes to the build flags
|
|
LINK_DIRECTORIES(${DumuxLinkDirectories})
|
|
INCLUDE_DIRECTORIES(${DumuxIncludeDirectories})
|
|
|