2017-01-12 04:31:10 -06:00
|
|
|
|
|
|
|
# Use this workaround until we're on 2.8.3 on all platforms and can use CMAKE_CURRENT_LIST_DIR directly
|
|
|
|
if (${CMAKE_VERSION} VERSION_GREATER "2.8.2")
|
|
|
|
set(CEE_CURRENT_LIST_DIR ${CMAKE_CURRENT_LIST_DIR}/)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
set (SOURCE_GROUP_HEADER_FILES
|
|
|
|
${CEE_CURRENT_LIST_DIR}RimFlowDiagSolution.h
|
2017-01-12 06:16:46 -06:00
|
|
|
${CEE_CURRENT_LIST_DIR}RimFlowPlotCollection.h
|
|
|
|
${CEE_CURRENT_LIST_DIR}RimWellAllocationPlot.h
|
2017-01-23 01:51:50 -06:00
|
|
|
${CEE_CURRENT_LIST_DIR}RimTotalWellAllocationPlot.h
|
2017-08-15 09:00:00 -05:00
|
|
|
${CEE_CURRENT_LIST_DIR}RimTofAccumulatedPhaseFractionsPlot.h
|
2017-01-24 07:25:31 -06:00
|
|
|
${CEE_CURRENT_LIST_DIR}RimWellFlowRateCurve.h
|
2017-02-13 01:40:27 -06:00
|
|
|
${CEE_CURRENT_LIST_DIR}RimWellAllocationPlotLegend.h
|
2017-03-24 09:10:39 -05:00
|
|
|
${CEE_CURRENT_LIST_DIR}RimFlowCharacteristicsPlot.h
|
2017-09-27 05:39:28 -05:00
|
|
|
${CEE_CURRENT_LIST_DIR}RimWellRftPlot.h
|
|
|
|
${CEE_CURRENT_LIST_DIR}RimWellRftPlotLegend.h
|
2017-01-12 04:31:10 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
set (SOURCE_GROUP_SOURCE_FILES
|
|
|
|
${CEE_CURRENT_LIST_DIR}RimFlowDiagSolution.cpp
|
2017-01-12 06:16:46 -06:00
|
|
|
${CEE_CURRENT_LIST_DIR}RimFlowPlotCollection.cpp
|
|
|
|
${CEE_CURRENT_LIST_DIR}RimWellAllocationPlot.cpp
|
2017-01-23 01:51:50 -06:00
|
|
|
${CEE_CURRENT_LIST_DIR}RimTotalWellAllocationPlot.cpp
|
2017-08-15 09:00:00 -05:00
|
|
|
${CEE_CURRENT_LIST_DIR}RimTofAccumulatedPhaseFractionsPlot.cpp
|
2017-01-24 07:25:31 -06:00
|
|
|
${CEE_CURRENT_LIST_DIR}RimWellFlowRateCurve.cpp
|
2017-02-13 01:40:27 -06:00
|
|
|
${CEE_CURRENT_LIST_DIR}RimWellAllocationPlotLegend.cpp
|
2017-03-24 09:10:39 -05:00
|
|
|
${CEE_CURRENT_LIST_DIR}RimFlowCharacteristicsPlot.cpp
|
2017-09-27 05:39:28 -05:00
|
|
|
${CEE_CURRENT_LIST_DIR}RimWellRftPlot.cpp
|
|
|
|
${CEE_CURRENT_LIST_DIR}RimWellRftPlotLegend.cpp
|
2017-01-12 04:31:10 -06:00
|
|
|
)
|
|
|
|
|
|
|
|
list(APPEND CODE_HEADER_FILES
|
|
|
|
${SOURCE_GROUP_HEADER_FILES}
|
|
|
|
)
|
|
|
|
|
|
|
|
list(APPEND CODE_SOURCE_FILES
|
|
|
|
${SOURCE_GROUP_SOURCE_FILES}
|
|
|
|
)
|
|
|
|
|
|
|
|
source_group( "ProjectDataModel\\Flow" FILES ${SOURCE_GROUP_HEADER_FILES} ${SOURCE_GROUP_SOURCE_FILES} ${CEE_CURRENT_LIST_DIR}CMakeLists_files.cmake )
|