mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-09 23:53:04 -06:00
14 lines
280 B
CMake
14 lines
280 B
CMake
|
if (BUILD_TESTS)
|
||
|
add_subdirectory( tests )
|
||
|
endif()
|
||
|
|
||
|
set( header_files
|
||
|
ert_unique_ptr.hpp
|
||
|
)
|
||
|
|
||
|
if (INSTALL_ERT)
|
||
|
foreach(header ${header_files})
|
||
|
install(FILES include/ert/util/${header} DESTINATION ${CMAKE_INSTALL_PREFIX}/include/ert/util)
|
||
|
endforeach()
|
||
|
endif()
|