mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Adds support for creating seismic sections from well paths and existing intersections. Adds more stability and user improvements
32 lines
1.4 KiB
CMake
32 lines
1.4 KiB
CMake
set(SOURCE_GROUP_HEADER_FILES
|
|
${CMAKE_CURRENT_LIST_DIR}/RicImportSeismicFeature.h
|
|
${CMAKE_CURRENT_LIST_DIR}/RicNewInlineSeismicSectionFeature.h
|
|
${CMAKE_CURRENT_LIST_DIR}/RicNewXlineSeismicSectionFeature.h
|
|
${CMAKE_CURRENT_LIST_DIR}/RicNewZSliceSeismicSectionFeature.h
|
|
${CMAKE_CURRENT_LIST_DIR}/RicSeismicSectionFeatureImpl.h
|
|
${CMAKE_CURRENT_LIST_DIR}/RicNewPolylineSeismicSectionFeature.h
|
|
${CMAKE_CURRENT_LIST_DIR}/RicNewWellpathSeismicSectionFeature.h
|
|
${CMAKE_CURRENT_LIST_DIR}/RicSeismicSectionFromIntersectionFeature.h
|
|
)
|
|
|
|
set(SOURCE_GROUP_SOURCE_FILES
|
|
${CMAKE_CURRENT_LIST_DIR}/RicImportSeismicFeature.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/RicNewInlineSeismicSectionFeature.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/RicNewXlineSeismicSectionFeature.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/RicNewZSliceSeismicSectionFeature.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/RicSeismicSectionFeatureImpl.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/RicNewPolylineSeismicSectionFeature.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/RicNewWellpathSeismicSectionFeature.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/RicSeismicSectionFromIntersectionFeature.cpp
|
|
)
|
|
|
|
list(APPEND COMMAND_CODE_HEADER_FILES ${SOURCE_GROUP_HEADER_FILES})
|
|
|
|
list(APPEND COMMAND_CODE_SOURCE_FILES ${SOURCE_GROUP_SOURCE_FILES})
|
|
|
|
source_group(
|
|
"CommandFeature\\SeismicCommands"
|
|
FILES ${SOURCE_GROUP_HEADER_FILES} ${SOURCE_GROUP_SOURCE_FILES}
|
|
${CMAKE_CURRENT_LIST_DIR}/CMakeLists_files.cmake
|
|
)
|