mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-24 15:26:48 -06:00
57 lines
1.3 KiB
CMake
57 lines
1.3 KiB
CMake
cmake_minimum_required (VERSION 2.8.12)
|
|
|
|
project (cafVizExtensions)
|
|
|
|
# Open GL
|
|
find_package( OpenGL )
|
|
|
|
add_library( ${PROJECT_NAME}
|
|
cafDisplayCoordTransform.cpp
|
|
cafDisplayCoordTransform.h
|
|
cafBoxManipulatorPartManager.cpp
|
|
cafBoxManipulatorPartManager.h
|
|
cafBoxManipulatorGeometryGenerator.cpp
|
|
cafBoxManipulatorGeometryGenerator.h
|
|
cafTitledOverlayFrame.cpp
|
|
cafTitledOverlayFrame.h
|
|
cafCategoryLegend.cpp
|
|
cafCategoryLegend.h
|
|
cafOverlayScalarMapperLegend.h
|
|
cafOverlayScalarMapperLegend.cpp
|
|
cafInternalLegendRenderTools.h
|
|
cafInternalLegendRenderTools.cpp
|
|
cafCategoryMapper.cpp
|
|
cafCategoryMapper.h
|
|
cafFixedAtlasFont.h
|
|
cafFixedAtlasFont.cpp
|
|
cafTransparentWBRenderConfiguration.h
|
|
cafTransparentWBRenderConfiguration.cpp
|
|
cafLine.h
|
|
cafLine.inl
|
|
TranspWB_CombinationFrag.glsl
|
|
TranspWB_PartlyTranspPartsFrag.glsl
|
|
TranspWB_TransparentPartsFrag.glsl
|
|
|
|
cafHexGridIntersectionTools/cafHexGridIntersectionTools.h
|
|
cafHexGridIntersectionTools/cafHexGridIntersectionTools.cpp
|
|
)
|
|
|
|
target_include_directories(${PROJECT_NAME}
|
|
PUBLIC
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
)
|
|
|
|
target_link_libraries ( ${PROJECT_NAME}
|
|
LibCore
|
|
LibGeometry
|
|
LibViewing
|
|
LibRender
|
|
LibGuiQt
|
|
|
|
CommonCode
|
|
|
|
${QT_LIBRARIES}
|
|
)
|
|
|
|
source_group("" FILES ${PROJECT_FILES})
|