mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-21 22:13:25 -06:00
1941a1f3d3
* Moved boost subset installation to vcpkg. * Moved Eigen to vcpkg. Added packages to vcpkg-response files. Removed unnecessary include_directories() calls. Removed comments. * Use target_link_library instead of boost_libraries Co-authored-by: Magne Sjaastad <magne.sjaastad@ceetronsolutions.com>
48 lines
1.2 KiB
CMake
48 lines
1.2 KiB
CMake
cmake_minimum_required (VERSION 2.8.12)
|
|
|
|
project (custom-opm-flowdiag-app)
|
|
|
|
if (CMAKE_COMPILER_IS_GNUCXX)
|
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-deprecated -Wno-deprecated-declarations")
|
|
endif()
|
|
|
|
include_directories(
|
|
../custom-opm-flowdiagnostics/opm-flowdiagnostics
|
|
opm-flowdiagnostics-applications
|
|
)
|
|
|
|
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}
|
|
)
|
|
|
|
find_package(Boost REQUIRED filesystem system)
|
|
|
|
target_link_libraries(custom-opm-flowdiag-app
|
|
ecl
|
|
Boost::filesystem
|
|
)
|
|
|
|
if (MSVC)
|
|
set_target_properties(${PROJECT_NAME} PROPERTIES COMPILE_FLAGS "/wd4190 /wd4267")
|
|
else()
|
|
set_target_properties(custom-opm-flowdiag-app PROPERTIES COMPILE_FLAGS "-Wno-deprecated -Wno-deprecated-declarations")
|
|
endif()
|
|
|
|
target_include_directories(${PROJECT_NAME}
|
|
PUBLIC
|
|
${CMAKE_CURRENT_SOURCE_DIR}/opm-flowdiagnostics-applications
|
|
)
|