comparison Samples/Sdl/CMakeLists.txt @ 848:80829436ce0c am-mainline

starting to re-implement radiography editor with latest framework
author Alain Mazy <alain@mazy.be>
date Thu, 13 Jun 2019 16:47:02 +0200
parents 2fd96a637a59
children 31319fe867b9
comparison
equal deleted inserted replaced
842:2b245953b44b 848:80829436ce0c
64 ) 64 )
65 65
66 target_link_libraries(BasicScene OrthancStone) 66 target_link_libraries(BasicScene OrthancStone)
67 67
68 # 68 #
69 # BasicScene 69 # TrackerSample
70 # 70 #
71 71
72 LIST(APPEND TRACKERSAMPLE_SOURCE "TrackerSample.cpp") 72 LIST(APPEND TRACKERSAMPLE_SOURCE "TrackerSample.cpp")
73 LIST(APPEND TRACKERSAMPLE_SOURCE "TrackerSampleApp.cpp") 73 LIST(APPEND TRACKERSAMPLE_SOURCE "TrackerSampleApp.cpp")
74 LIST(APPEND TRACKERSAMPLE_SOURCE "TrackerSampleApp.h") 74 LIST(APPEND TRACKERSAMPLE_SOURCE "TrackerSampleApp.h")
101 FusionMprSdl.cpp 101 FusionMprSdl.cpp
102 FusionMprSdl.h 102 FusionMprSdl.h
103 ) 103 )
104 104
105 target_link_libraries(FusionMprSdl OrthancStone) 105 target_link_libraries(FusionMprSdl OrthancStone)
106
107 #
108 # RadiographyEditor
109 #
110
111 LIST(APPEND RADIOGRAPHY_EDITOR_SOURCE "../Shared/RadiographyEditorApp.cpp")
112 LIST(APPEND RADIOGRAPHY_EDITOR_SOURCE "../Shared/RadiographyEditorApp.h")
113 LIST(APPEND RADIOGRAPHY_EDITOR_SOURCE "RadiographyEditor.cpp")
114
115 if (MSVC AND MSVC_VERSION GREATER 1700)
116 LIST(APPEND RADIOGRAPHY_EDITOR_SOURCE "cpp.hint")
117 endif()
118
119 add_executable(RadiographyEditor
120 ${RADIOGRAPHY_EDITOR_SOURCE}
121 )
122
123 target_link_libraries(RadiographyEditor OrthancStone)