mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-26 00:06:49 -06:00
55ba4bc802
* Implement a simple depth filter to cut all geometry below a certain level for intersections * Add option to override all curve intersection cut depths from collection. * Add support for showing intersection above or below threshold. Update label texts.
30 lines
1.2 KiB
CMake
30 lines
1.2 KiB
CMake
set(SOURCE_GROUP_HEADER_FILES
|
|
${CMAKE_CURRENT_LIST_DIR}/RimBoxIntersection.h
|
|
${CMAKE_CURRENT_LIST_DIR}/RimIntersection.h
|
|
${CMAKE_CURRENT_LIST_DIR}/RimExtrudedCurveIntersection.h
|
|
${CMAKE_CURRENT_LIST_DIR}/RimIntersectionCollection.h
|
|
${CMAKE_CURRENT_LIST_DIR}/RimIntersectionResultDefinition.h
|
|
${CMAKE_CURRENT_LIST_DIR}/RimIntersectionResultsDefinitionCollection.h
|
|
${CMAKE_CURRENT_LIST_DIR}/RimIntersectionEnums.h
|
|
)
|
|
|
|
set(SOURCE_GROUP_SOURCE_FILES
|
|
${CMAKE_CURRENT_LIST_DIR}/RimIntersection.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/RimExtrudedCurveIntersection.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/RimIntersectionCollection.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/RimIntersectionResultDefinition.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/RimIntersectionResultsDefinitionCollection.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/RimBoxIntersection.cpp
|
|
${CMAKE_CURRENT_LIST_DIR}/RimIntersectionEnums.cpp
|
|
)
|
|
|
|
list(APPEND CODE_HEADER_FILES ${SOURCE_GROUP_HEADER_FILES})
|
|
|
|
list(APPEND CODE_SOURCE_FILES ${SOURCE_GROUP_SOURCE_FILES})
|
|
|
|
source_group(
|
|
"ProjectDataModel\\Intersection"
|
|
FILES ${SOURCE_GROUP_HEADER_FILES} ${SOURCE_GROUP_SOURCE_FILES}
|
|
${CMAKE_CURRENT_LIST_DIR}/CMakeLists_files.cmake
|
|
)
|