Files
ResInsight/ThirdParty/Ert/applications/CMakeLists.txt
Magne Sjaastad 04091ad77d #4266 Update libecl
Use commit 0e1e780fd6f18ce93119061e36a4fca9711bc020

Excluded multibuild folder, as this caused git issues
2019-05-09 08:40:32 +02:00

94 lines
3.0 KiB
CMake

project(libecl-applications)
if (BUILD_APPLICATIONS)
add_executable(sum_write ecl/sum_write.cpp)
add_executable(make_grid ecl/make_grid.c)
add_executable(grdecl_grid ecl/grdecl_grid.c)
add_executable(summary ecl/view_summary.cpp)
target_link_libraries(sum_write ecl)
target_link_libraries(make_grid ecl)
target_link_libraries(grdecl_grid ecl)
target_link_libraries(summary ecl)
list(APPEND apps make_grid grdecl_grid summary)
foreach (app ecl_pack.c
ecl_unpack.c
kw_extract.cpp
grid_info.c
grid_dump.c
grid_dump_ascii.c
select_test.c
load_test.c
)
add_executable(${app} ecl/${app})
target_link_libraries(${app} ecl)
list(APPEND apps ${app})
if (ERT_LINUX)
# The stupid .x extension creates problems on windows
set_target_properties(${app} PROPERTIES SUFFIX ".x")
endif ()
endforeach ()
if (ERT_LINUX)
foreach (app convert grdecl_test kw_list)
add_executable(${app} ecl/${app}.c)
target_link_libraries(${app} ecl)
# The stupid .x extension creates problems on windows
set_target_properties(${app} PROPERTIES SUFFIX ".x")
list(APPEND apps ${app})
endforeach ()
set_target_properties(summary PROPERTIES SUFFIX ".x")
endif ()
# This minor eclipse application depends on the config parser library
# and should be moved to the libres repository - it can not be
# built here.
if (BUILD_ERT)
add_executable( ecl_quantile ecl/ecl_quantile.c )
target_link_libraries( ecl_quantile config )
list(APPEND apps ecl_quantile)
endif()
if (PTHREAD_LIBRARY)
add_executable(bls block_fs/bls.c)
target_link_libraries(bls ecl)
list(APPEND apps bls)
endif ()
add_executable(segment_info well/segment_info.c)
add_executable(CF_dump well/well_CF_dump.c)
add_executable(ri_well_test well/ri_well_test.c)
target_link_libraries(segment_info ecl)
target_link_libraries(CF_dump ecl)
target_link_libraries(ri_well_test ecl)
list(APPEND apps segment_info CF_dump ri_well_test)
endif()
if (BUILD_ECL_SUMMARY)
add_executable(ecl_summary ecl/view_summary.cpp)
target_link_libraries(ecl_summary ecl)
list(APPEND apps ecl_summary)
install(FILES ${PROJECT_SOURCE_DIR}/man/man1/ecl_summary.1
DESTINATION ${CMAKE_INSTALL_MANDIR}/man1)
endif()
if(apps)
if (ERT_USE_OPENMP)
foreach(app ${apps})
target_compile_options(${app} PUBLIC ${OpenMP_C_FLAGS})
set_property(TARGET ${app} APPEND PROPERTY LINK_FLAGS ${OpenMP_C_FLAGS})
endforeach()
endif()
install(TARGETS ${apps}
ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
endif()