comparison Samples/Sdl/CMakeLists.txt @ 916:a911f5bb48da am-dev

MultiPlatform Basic Scene sample (so far: SDL + Qt)
author Alain Mazy <alain@mazy.be>
date Fri, 19 Jul 2019 15:06:36 +0200
parents 9c2f6d6b9f4a
children
comparison
equal deleted inserted replaced
915:912cc77be3b4 916:a911f5bb48da
108 ) 108 )
109 109
110 target_link_libraries(FusionMprSdl OrthancStone) 110 target_link_libraries(FusionMprSdl OrthancStone)
111 111
112 # 112 #
113 # RadiographyEditor 113 # Multiplatform Basic Scene
114 # 114 #
115 115
116 LIST(APPEND RADIOGRAPHY_EDITOR_SOURCE "../Shared/RadiographyEditorApp.cpp") 116 LIST(APPEND MP_BASIC_SCENE_SOURCE "../MultiPlatform/BasicScene/BasicScene.cpp")
117 LIST(APPEND RADIOGRAPHY_EDITOR_SOURCE "../Shared/RadiographyEditorApp.h") 117 LIST(APPEND MP_BASIC_SCENE_SOURCE "../MultiPlatform/BasicScene/BasicScene.h")
118 LIST(APPEND RADIOGRAPHY_EDITOR_SOURCE "RadiographyEditor.cpp") 118 LIST(APPEND MP_BASIC_SCENE_SOURCE "../MultiPlatform/BasicScene/mainSdl.cpp")
119 119
120 if (MSVC AND MSVC_VERSION GREATER 1700) 120 if (MSVC AND MSVC_VERSION GREATER 1700)
121 LIST(APPEND RADIOGRAPHY_EDITOR_SOURCE "cpp.hint") 121 LIST(APPEND MP_BASIC_SCENE_SOURCE "cpp.hint")
122 endif() 122 endif()
123 123
124 add_executable(RadiographyEditor 124 add_executable(MpBasicScene
125 ${RADIOGRAPHY_EDITOR_SOURCE} 125 ${MP_BASIC_SCENE_SOURCE}
126 ) 126 )
127 127
128 target_link_libraries(RadiographyEditor OrthancStone) 128 target_include_directories(MpBasicScene PUBLIC ${ORTHANC_STONE_ROOT})
129 target_link_libraries(MpBasicScene OrthancStone)