comparison Samples/Sdl/CMakeLists.txt @ 882:31319fe867b9 am-dev

Merge
author Alain Mazy <alain@mazy.be>
date Tue, 09 Jul 2019 11:46:43 +0200
parents 0c0fc20a6902 80829436ce0c
children 56e4e9281076
comparison
equal deleted inserted replaced
881:a8cd3755db21 882:31319fe867b9
69 ) 69 )
70 70
71 target_link_libraries(BasicScene OrthancStone) 71 target_link_libraries(BasicScene OrthancStone)
72 72
73 # 73 #
74 # BasicScene 74 # TrackerSample
75 # 75 #
76 76
77 LIST(APPEND TRACKERSAMPLE_SOURCE "TrackerSample.cpp") 77 LIST(APPEND TRACKERSAMPLE_SOURCE "TrackerSample.cpp")
78 LIST(APPEND TRACKERSAMPLE_SOURCE "TrackerSampleApp.cpp") 78 LIST(APPEND TRACKERSAMPLE_SOURCE "TrackerSampleApp.cpp")
79 LIST(APPEND TRACKERSAMPLE_SOURCE "TrackerSampleApp.h") 79 LIST(APPEND TRACKERSAMPLE_SOURCE "TrackerSampleApp.h")
106 FusionMprSdl.cpp 106 FusionMprSdl.cpp
107 FusionMprSdl.h 107 FusionMprSdl.h
108 ) 108 )
109 109
110 target_link_libraries(FusionMprSdl OrthancStone) 110 target_link_libraries(FusionMprSdl OrthancStone)
111
112 #
113 # RadiographyEditor
114 #
115
116 LIST(APPEND RADIOGRAPHY_EDITOR_SOURCE "../Shared/RadiographyEditorApp.cpp")
117 LIST(APPEND RADIOGRAPHY_EDITOR_SOURCE "../Shared/RadiographyEditorApp.h")
118 LIST(APPEND RADIOGRAPHY_EDITOR_SOURCE "RadiographyEditor.cpp")
119
120 if (MSVC AND MSVC_VERSION GREATER 1700)
121 LIST(APPEND RADIOGRAPHY_EDITOR_SOURCE "cpp.hint")
122 endif()
123
124 add_executable(RadiographyEditor
125 ${RADIOGRAPHY_EDITOR_SOURCE}
126 )
127
128 target_link_libraries(RadiographyEditor OrthancStone)