2015-04-23 06:24:15 -05:00
|
|
|
cmake_minimum_required (VERSION 2.8)
|
|
|
|
|
|
|
|
project (RigGeoMechDataModel)
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
${LibCore_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
|
|
|
|
RigFemScalarResultFrames.h
|
|
|
|
RigFemScalarResultFrames.cpp
|
|
|
|
RigFemNativeStatCalc.h
|
|
|
|
RigFemNativeStatCalc.cpp
|
2015-04-23 06:24:15 -05:00
|
|
|
)
|
2015-04-24 08:53:50 -05:00
|
|
|
|
2015-05-11 07:42:41 -05:00
|
|
|
target_link_libraries( ${PROJECT_NAME} LibCore ResultStatisticsCache)
|