mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-09 23:16:00 -06:00
34 lines
806 B
CMake
34 lines
806 B
CMake
cmake_minimum_required (VERSION 2.8)
|
|
|
|
project (custom-opm-flowdiag-app)
|
|
|
|
include_directories(
|
|
../custom-opm-flowdiagnostics/opm-flowdiagnostics
|
|
opm-flowdiagnostics-applications
|
|
opmCore
|
|
${boost-Subset_SOURCE_DIR}
|
|
)
|
|
|
|
include (opm-flowdiagnostics-applications/CMakeLists_files.cmake)
|
|
|
|
set(project_source_files
|
|
${MAIN_SOURCE_FILES}
|
|
${PUBLIC_HEADER_FILES}
|
|
)
|
|
|
|
foreach (file ${project_source_files} )
|
|
list(APPEND project_source_files_complete_path1 "opm-flowdiagnostics-applications/${file}" )
|
|
endforeach()
|
|
|
|
add_definitions(-DHAVE_ERT_ECL_TYPE_H)
|
|
|
|
add_library(custom-opm-flowdiag-app
|
|
${project_source_files_complete_path1}
|
|
)
|
|
|
|
target_link_libraries(custom-opm-flowdiag-app ecl)
|
|
|
|
if (MSVC)
|
|
set_target_properties(${PROJECT_NAME} PROPERTIES COMPILE_FLAGS "/wd4190 /wd4267")
|
|
endif()
|