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