2016-05-27 06:12:31 -05:00
|
|
|
cmake_minimum_required (VERSION 2.8)
|
|
|
|
|
|
|
|
project (custom-opm-common)
|
|
|
|
|
|
|
|
include_directories(
|
2016-06-05 11:45:53 -05:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/opm-common
|
2016-05-27 06:12:31 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
#include(opm-common/CMakeLists_files.cmake)
|
|
|
|
|
|
|
|
list (APPEND MAIN_SOURCE_FILES
|
2016-06-05 11:45:53 -05:00
|
|
|
opm-common/opm/common/data/SimulationDataContainer.cpp
|
|
|
|
opm-common/opm/common/OpmLog/CounterLog.cpp
|
|
|
|
opm-common/opm/common/OpmLog/EclipsePRTLog.cpp
|
|
|
|
opm-common/opm/common/OpmLog/LogBackend.cpp
|
|
|
|
opm-common/opm/common/OpmLog/Logger.cpp
|
|
|
|
opm-common/opm/common/OpmLog/LogUtil.cpp
|
|
|
|
opm-common/opm/common/OpmLog/OpmLog.cpp
|
|
|
|
opm-common/opm/common/OpmLog/StreamLog.cpp
|
|
|
|
opm-common/opm/common/OpmLog/TimerLog.cpp
|
2016-05-27 06:12:31 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
add_library( ${PROJECT_NAME}
|
2016-06-05 11:45:53 -05:00
|
|
|
STATIC
|
|
|
|
${MAIN_SOURCE_FILES}
|
2016-05-27 06:12:31 -05:00
|
|
|
)
|
|
|
|
|