comparison Samples/Sdl/CMakeLists.txt @ 644:f939f449482c

Ongoing tracker work.
author Benjamin Golinvaux <bgo@osimis.io>
date Fri, 10 May 2019 16:15:55 +0200
parents b0652595b62a
children 1e9ed656318e
comparison
equal deleted inserted replaced
634:6a144a45b2d8 644:f939f449482c
67 ) 67 )
68 LIST(APPEND TRACKERSAMPLE_SOURCE "../../../SDL-Console/SDL_Console.c") 68 LIST(APPEND TRACKERSAMPLE_SOURCE "../../../SDL-Console/SDL_Console.c")
69 LIST(APPEND TRACKERSAMPLE_SOURCE "../../../SDL-Console/SDL_Console.h") 69 LIST(APPEND TRACKERSAMPLE_SOURCE "../../../SDL-Console/SDL_Console.h")
70 endif() 70 endif()
71 71
72 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/CreateAngleMeasureTracker.cpp")
73 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/CreateAngleMeasureTracker.h")
74 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/CreateCircleMeasureTracker.cpp")
75 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/CreateCircleMeasureTracker.h")
76 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/CreateLineMeasureTracker.cpp")
77 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/CreateLineMeasureTracker.h")
78
79 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/CreateMeasureTracker.cpp")
80 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/CreateMeasureTracker.h")
81
82 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/CreateSimpleTrackerAdapter.cpp")
83
84 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/EditAngleMeasureTracker.cpp")
85 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/EditAngleMeasureTracker.h")
86 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/EditCircleMeasureTracker.cpp")
87 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/EditCircleMeasureTracker.h")
88 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/EditLineMeasureTracker.cpp")
89 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/EditLineMeasureTracker.h")
90
91 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/IFlexiblePointerTracker.h")
92
72 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/MeasureCommands.cpp") 93 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/MeasureCommands.cpp")
73 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/MeasureCommands.h") 94 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/MeasureCommands.h")
74 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/MeasureTools.cpp") 95 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/MeasureTools.cpp")
75 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/MeasureTools.h") 96 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/MeasureTools.h")
76 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/MeasureTrackers.cpp") 97 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/MeasureTrackers.cpp")
77 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/MeasureTrackers.h") 98 LIST(APPEND TRACKERSAMPLE_SOURCE "../Common/MeasureTrackers.h")
99
100
78 LIST(APPEND TRACKERSAMPLE_SOURCE "TrackerSample.cpp") 101 LIST(APPEND TRACKERSAMPLE_SOURCE "TrackerSample.cpp")
102 LIST(APPEND TRACKERSAMPLE_SOURCE "TrackerSampleApp.cpp")
103 LIST(APPEND TRACKERSAMPLE_SOURCE "TrackerSampleApp.h")
104
105 if (MSVC AND MSVC_VERSION GREATER 1700)
106 LIST(APPEND TRACKERSAMPLE_SOURCE "cpp.hint")
107 endif()
79 108
80 add_executable(TrackerSample 109 add_executable(TrackerSample
81 ${TRACKERSAMPLE_SOURCE} 110 ${TRACKERSAMPLE_SOURCE}
82 ) 111 )
83 112