mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
17 lines
592 B
CMake
17 lines
592 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)
|