mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-01 03:37:15 -06:00
24 lines
471 B
CMake
24 lines
471 B
CMake
cmake_minimum_required (VERSION 2.8)
|
|
|
|
project (custom-opm-flowdiagnostics)
|
|
|
|
include_directories(
|
|
opm-flowdiagnostics
|
|
)
|
|
|
|
include (opm-flowdiagnostics/CMakeLists_files.cmake)
|
|
|
|
set(project_source_files
|
|
${MAIN_SOURCE_FILES}
|
|
${PUBLIC_HEADER_FILES}
|
|
)
|
|
|
|
foreach (file ${project_source_files} )
|
|
list(APPEND project_source_files_complete_path "opm-flowdiagnostics/${file}" )
|
|
endforeach()
|
|
|
|
add_library(${PROJECT_NAME}
|
|
${project_source_files_complete_path}
|
|
)
|
|
|