We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba729aa commit 1735812Copy full SHA for 1735812
1 file changed
Framework/CMakeLists.txt
@@ -191,19 +191,24 @@ if(GLFW_FOUND)
191
set(DATADUMP "o2-qc-data-dump")
192
193
set(
194
- GUI_SRCS
+ IMGUI_SRCS
195
src/imgui/imgui.cpp
196
src/imgui/imgui_draw.cpp
197
src/imgui/imgui_impl_glfw_gl3.cpp
198
src/imgui/gl3w.c
199
src/imgui/imgui_widgets.cpp
200
src/imgui/imgui_demo.cpp
201
src/imgui/BaseGui.cxx
202
+ )
203
+ set(${IMGUI_SRCS} PROPERTIES COMPILE_FLAGS -w)
204
+
205
+ set(
206
+ GUI_SRCS
207
src/DataDumpGui.cxx
208
src/runDataDump.cxx
209
)
210
- add_executable(${DATADUMP} ${GUI_SRCS})
211
+ add_executable(${DATADUMP} ${GUI_SRCS} ${IMGUI_SRCS})
212
213
target_link_libraries(${DATADUMP} PRIVATE QualityControl GLFW::GLFW)
214
else()
0 commit comments