Mercurial > hg > orthanc-stone
view Samples/Sdl/SingleFrameViewer/CMakeLists.txt @ 1479:5e3cfe87a873
SortedFrames::Clear()
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 18 Jun 2020 16:18:53 +0200 |
parents | 70b0b1dc1de4 |
children |
line wrap: on
line source
cmake_minimum_required(VERSION 2.8.10) project(SdlSimpleViewer) set(ORTHANC_FRAMEWORK_SOURCE "path") set(ORTHANC_FRAMEWORK_ROOT ${CMAKE_CURRENT_LIST_DIR}/../../../../orthanc) set(STONE_ROOT ${CMAKE_CURRENT_LIST_DIR}/../../../) include(${STONE_ROOT}/Resources/CMake/OrthancStoneParameters.cmake) SET(ENABLE_GOOGLE_TEST OFF) SET(ENABLE_LOCALE ON) # Necessary for text rendering SET(ENABLE_SDL ON) SET(ENABLE_DCMTK ON) # <== SET(ENABLE_OPENGL ON) # <== SET(ENABLE_WEB_CLIENT ON) SET(ORTHANC_SANDBOXED OFF) include(${STONE_ROOT}/Resources/CMake/OrthancStoneConfiguration.cmake) include(${STONE_ROOT}/Resources/CMake/Utilities.cmake) add_definitions( -DORTHANC_ENABLE_LOGGING=1 -DORTHANC_ENABLE_LOGGING_PLUGIN=0 -DORTHANC_ENABLE_PUGIXML=0 -DORTHANC_DEFAULT_DICOM_ENCODING=Encoding_Latin1 ) SortFilesInSourceGroups() add_executable(SdlSimpleViewer ../SdlHelpers.h ../../Common/SampleHelpers.h SdlSimpleViewerApplication.h SdlSimpleViewer.cpp ${ORTHANC_STONE_SOURCES} ) target_link_libraries(SdlSimpleViewer ${DCMTK_LIBRARIES})