1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00
tracy/profiler/meson.build
2022-08-06 20:35:09 -04:00

23 lines
697 B
Meson

profiler_sources = files(
'src/main.cpp',
'src/BackendGlfw.cpp',
'src/ConnectionHistory.cpp',
'src/Filters.cpp',
'src/Fonts.cpp',
'src/HttpRequest.cpp',
'src/ImGuiContext.cpp',
'src/ResolvService.cpp',
'src/RunQueue.cpp',
'src/WindowPosition.cpp',
'src/imgui/imgui_impl_glfw.cpp',
'src/imgui/imgui_impl_opengl3.cpp')
if get_option('tracy_gtk_fileselector')
profiler_sources += files('../nfd/nfd_gtk.cpp')
endif
profiler_inc = include_directories('src', 'src/imgui')
glfw = dependency('glfw3')
executable('profiler', profiler_sources, include_directories: profiler_inc, dependencies: [glfw, threads_dep, server_dep, tracy_dep, zstd_dep])