2015-07-29 14:19:43 +02:00
|
|
|
cmake_minimum_required (VERSION 2.8)
|
|
|
|
|
|
|
|
|
|
project (cafVizExtensions)
|
|
|
|
|
|
|
|
|
|
# Open GL
|
|
|
|
|
find_package( OpenGL )
|
|
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
|
${LibCore_SOURCE_DIR}
|
|
|
|
|
${LibGeometry_SOURCE_DIR}
|
|
|
|
|
${LibGuiQt_SOURCE_DIR}
|
|
|
|
|
${LibRender_SOURCE_DIR}
|
|
|
|
|
${LibViewing_SOURCE_DIR}
|
|
|
|
|
${CommonCode_SOURCE_DIR}
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
add_library( ${PROJECT_NAME}
|
2016-08-02 10:25:55 +02:00
|
|
|
cafCategoryLegend.cpp
|
|
|
|
|
cafCategoryLegend.h
|
|
|
|
|
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
|
|
|
|
|
)
|