1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Adding Windows explicit dependencies for when compiling on Linux with Wine and mingw.

This commit is contained in:
David McCloskey 2022-07-15 12:49:02 -05:00
parent c3c799ebc4
commit edfd8dd631

View File

@ -179,9 +179,23 @@ if tracy_shared_libs
tracy_dep_compile_args += [ '-DTRACY_IMPORTS' ]
endif
tracy_dep_dependencies = []
if not tracy_shared_libs
compiler = meson.get_compiler('cpp')
ws2_32 = compiler.find_library('ws2_32')
dbghelp = compiler.find_library('dbghelp')
advapi32 = compiler.find_library('advapi32')
user32 = compiler.find_library('user32')
tracy_dep_dependencies += [ ws2_32, dbghelp, advapi32, user32 ]
endif
tracy_dep = declare_dependency(
compile_args : tracy_dep_compile_args,
link_with : tracy,
dependencies : tracy_dep_dependencies,
include_directories : tracy_public_include_dirs)
tracy_dep_dynamic = declare_dependency(