2015-04-23 06:24:15 -05:00
|
|
|
cmake_minimum_required (VERSION 2.8)
|
|
|
|
|
|
|
|
project (RigGeoMechDataModel)
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
${LibCore_SOURCE_DIR}
|
2015-06-17 07:51:22 -05:00
|
|
|
${cafTensor_SOURCE_DIR}
|
2015-05-11 07:42:41 -05:00
|
|
|
../../ResultStatisticsCache
|
|
|
|
../OdbReader
|
2015-04-23 06:24:15 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
add_library( ${PROJECT_NAME}
|
|
|
|
RigFemPart.h
|
|
|
|
RigFemPart.cpp
|
|
|
|
RigFemTypes.h
|
2015-04-27 08:04:05 -05:00
|
|
|
RigFemTypes.cpp
|
2015-04-23 06:24:15 -05:00
|
|
|
RigGeoMechCaseData.cpp
|
|
|
|
RigGeoMechCaseData.h
|
2015-04-27 03:25:04 -05:00
|
|
|
RigFemPartCollection.cpp
|
|
|
|
RigFemPartCollection.h
|
2015-05-06 09:07:30 -05:00
|
|
|
RigFemPartResults.h
|
|
|
|
RigFemPartResults.cpp
|
2015-06-04 05:35:22 -05:00
|
|
|
RigFemPartResultsCollection.h
|
|
|
|
RigFemPartResultsCollection.cpp
|
2015-05-06 09:07:30 -05:00
|
|
|
RigFemScalarResultFrames.h
|
|
|
|
RigFemScalarResultFrames.cpp
|
|
|
|
RigFemNativeStatCalc.h
|
|
|
|
RigFemNativeStatCalc.cpp
|
2015-11-06 03:18:55 -06:00
|
|
|
RigFemNativeVisibleCellsStatCalc.h
|
|
|
|
RigFemNativeVisibleCellsStatCalc.cpp
|
2015-05-26 01:57:53 -05:00
|
|
|
RigFemFaceComparator.h
|
|
|
|
RigFemPartGrid.h
|
|
|
|
RigFemPartGrid.cpp
|
2015-06-04 05:35:22 -05:00
|
|
|
RigFemResultAddress.h
|
|
|
|
RigFemResultPosEnum.h
|
2017-04-04 09:08:42 -05:00
|
|
|
RimGeoMechGeometrySelectionItem.h
|
|
|
|
RimGeoMechGeometrySelectionItem.cpp
|
2015-04-23 06:24:15 -05:00
|
|
|
)
|
2015-04-24 08:53:50 -05:00
|
|
|
|
2015-06-17 07:51:22 -05:00
|
|
|
target_link_libraries( ${PROJECT_NAME} LibCore cafTensor ResultStatisticsCache)
|