mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-24 07:16:53 -06: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)
|