2018-02-27 17:20:46 +01:00
|
|
|
cmake_minimum_required (VERSION 2.8.12)
|
2015-07-29 14:19:43 +02:00
|
|
|
|
|
|
|
|
project (cafVizExtensions)
|
|
|
|
|
|
|
|
|
|
# Open GL
|
|
|
|
|
find_package( OpenGL )
|
|
|
|
|
|
|
|
|
|
add_library( ${PROJECT_NAME}
|
2016-09-29 11:43:24 +02:00
|
|
|
cafDisplayCoordTransform.cpp
|
|
|
|
|
cafDisplayCoordTransform.h
|
2016-09-27 11:59:06 +02:00
|
|
|
cafBoxManipulatorPartManager.cpp
|
|
|
|
|
cafBoxManipulatorPartManager.h
|
|
|
|
|
cafBoxManipulatorGeometryGenerator.cpp
|
|
|
|
|
cafBoxManipulatorGeometryGenerator.h
|
2018-04-05 15:25:33 +02:00
|
|
|
cafTitledOverlayFrame.cpp
|
|
|
|
|
cafTitledOverlayFrame.h
|
2016-08-02 10:25:55 +02:00
|
|
|
cafCategoryLegend.cpp
|
|
|
|
|
cafCategoryLegend.h
|
2018-03-08 11:20:27 +01:00
|
|
|
cafOverlayScalarMapperLegend.h
|
|
|
|
|
cafOverlayScalarMapperLegend.cpp
|
|
|
|
|
cafInternalLegendRenderTools.h
|
|
|
|
|
cafInternalLegendRenderTools.cpp
|
2016-08-02 10:25:55 +02:00
|
|
|
cafCategoryMapper.cpp
|
|
|
|
|
cafCategoryMapper.h
|
2016-08-09 11:18:56 +02:00
|
|
|
cafFixedAtlasFont.h
|
|
|
|
|
cafFixedAtlasFont.cpp
|
2015-07-29 14:19:43 +02:00
|
|
|
cafTransparentWBRenderConfiguration.h
|
|
|
|
|
cafTransparentWBRenderConfiguration.cpp
|
|
|
|
|
TranspWB_CombinationFrag.glsl
|
|
|
|
|
TranspWB_PartlyTranspPartsFrag.glsl
|
|
|
|
|
TranspWB_TransparentPartsFrag.glsl
|
2016-09-20 15:57:06 +02:00
|
|
|
|
|
|
|
|
cafHexGridIntersectionTools/cafHexGridIntersectionTools.h
|
|
|
|
|
cafHexGridIntersectionTools/cafHexGridIntersectionTools.cpp
|
2015-07-29 14:19:43 +02:00
|
|
|
)
|
2018-02-27 17:20:46 +01:00
|
|
|
|
|
|
|
|
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})
|