mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-24 15:26:48 -06:00
0bd4f4a8f9
Refactored some in 3D info regarding geomech cases.
42 lines
938 B
CMake
42 lines
938 B
CMake
cmake_minimum_required (VERSION 2.8)
|
|
|
|
project (RigGeoMechDataModel)
|
|
|
|
include_directories(
|
|
${LibCore_SOURCE_DIR}
|
|
${cafTensor_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
|
|
RigFemPartResultsCollection.h
|
|
RigFemPartResultsCollection.cpp
|
|
RigFemScalarResultFrames.h
|
|
RigFemScalarResultFrames.cpp
|
|
RigFemNativeStatCalc.h
|
|
RigFemNativeStatCalc.cpp
|
|
RigFemNativeVisibleCellsStatCalc.h
|
|
RigFemNativeVisibleCellsStatCalc.cpp
|
|
RigFemFaceComparator.h
|
|
RigFemPartGrid.h
|
|
RigFemPartGrid.cpp
|
|
RigFemResultAddress.h
|
|
RigFemResultPosEnum.h
|
|
RigFemTimeHistoryResultAccessor.h
|
|
RigFemTimeHistoryResultAccessor.cpp
|
|
)
|
|
|
|
target_link_libraries( ${PROJECT_NAME} LibCore cafTensor ResultStatisticsCache)
|