mirror of
https://github.com/OPM/ResInsight.git
synced 2026-08-26 13:17:35 -05:00
Changed cmake files and unit tests after recent changes that had broken the builds. Geo mech lib now links with new library ResultStatisticsCache.
29 lines
571 B
CMake
29 lines
571 B
CMake
cmake_minimum_required (VERSION 2.8)
|
|
|
|
project (RigGeoMechDataModel)
|
|
|
|
include_directories(
|
|
${LibCore_SOURCE_DIR}
|
|
../../ResultStatisticsCache
|
|
../OdbReader
|
|
)
|
|
|
|
|
|
add_library( ${PROJECT_NAME}
|
|
RigFemPart.h
|
|
RigFemPart.cpp
|
|
RigFemTypes.h
|
|
RigFemTypes.cpp
|
|
RigGeoMechCaseData.cpp
|
|
RigGeoMechCaseData.h
|
|
RigFemPartCollection.cpp
|
|
RigFemPartCollection.h
|
|
RigFemPartResults.h
|
|
RigFemPartResults.cpp
|
|
RigFemScalarResultFrames.h
|
|
RigFemScalarResultFrames.cpp
|
|
RigFemNativeStatCalc.h
|
|
RigFemNativeStatCalc.cpp
|
|
)
|
|
|
|
target_link_libraries( ${PROJECT_NAME} LibCore ResultStatisticsCache) |