mirror of
https://github.com/OPM/ResInsight.git
synced 2026-07-31 08:48:17 -05:00
19 lines
351 B
CMake
19 lines
351 B
CMake
cmake_minimum_required (VERSION 2.8)
|
|||
|
|
|
||
|
|
project (ResultStatisticsCache)
|
||
|
|
|
||
|
|
include_directories(
|
||
|
|
${LibCore_SOURCE_DIR}
|
||
|
|
)
|
||
|
|
|
||
|
|
add_library( ${PROJECT_NAME}
|
||
|
|
RigStatisticsCalculator.h
|
||
|
|
RigStatisticsCalculator.cpp
|
||
|
|
RigStatisticsDataCache.h
|
||
|
|
RigStatisticsDataCache.cpp
|
||
|
|
RigStatisticsMath.h
|
||
|
|
RigStatisticsMath.cpp
|
||
|
|
)
|
||
|
|
|
||
|
|
target_link_libraries(${PROJECT_NAME} LibCore)
|