mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-23 23:13:39 -06:00
20 lines
595 B
CMake
20 lines
595 B
CMake
set(SOURCE_GROUP_HEADER_FILES
|
|
${CMAKE_CURRENT_LIST_DIR}/RimPlotTemplateFolderItem.h
|
|
${CMAKE_CURRENT_LIST_DIR}/RimPlotTemplateFileItem.h
|
|
)
|
|
|
|
set(SOURCE_GROUP_SOURCE_FILES
|
|
${CMAKE_CURRENT_LIST_DIR}/RimPlotTemplateFolderItem.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/RimPlotTemplateFileItem.cpp
|
|
)
|
|
|
|
list(APPEND CODE_HEADER_FILES ${SOURCE_GROUP_HEADER_FILES})
|
|
|
|
list(APPEND CODE_SOURCE_FILES ${SOURCE_GROUP_SOURCE_FILES})
|
|
|
|
source_group(
|
|
"ProjectDataModel\\PlotTemplates"
|
|
FILES ${SOURCE_GROUP_HEADER_FILES} ${SOURCE_GROUP_SOURCE_FILES}
|
|
${CMAKE_CURRENT_LIST_DIR}/CMakeLists_files.cmake
|
|
)
|