mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-30 01:04:36 +00:00
Merge pull request #656 from apache-hb/master
respect mesons default_library option
This commit is contained in:
commit
7c6e093213
81
meson.build
81
meson.build
@ -1,106 +1,112 @@
|
|||||||
project('tracy', ['cpp'], version: '0.10.0')
|
project('tracy', ['cpp'], version: '0.10.0', meson_version: '>=0.63.0')
|
||||||
|
|
||||||
|
# internal compiler flags
|
||||||
tracy_compile_args = []
|
tracy_compile_args = []
|
||||||
|
|
||||||
|
# compiler flags shared between the capture library itself and the code using it
|
||||||
|
tracy_common_args = []
|
||||||
|
|
||||||
if get_option('tracy_enable')
|
if get_option('tracy_enable')
|
||||||
tracy_compile_args += ['-DTRACY_ENABLE']
|
tracy_common_args += ['-DTRACY_ENABLE']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_on_demand')
|
if get_option('tracy_on_demand')
|
||||||
tracy_compile_args += ['-DTRACY_ON_DEMAND']
|
tracy_common_args += ['-DTRACY_ON_DEMAND']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_callstack')
|
if get_option('tracy_callstack')
|
||||||
tracy_compile_args += ['-DTRACY_CALLSTACK']
|
tracy_common_args += ['-DTRACY_CALLSTACK']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_no_callstack')
|
if get_option('tracy_no_callstack')
|
||||||
tracy_compile_args += ['-DTRACY_NO_CALLSTACK']
|
tracy_common_args += ['-DTRACY_NO_CALLSTACK']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_no_callstack_inlines')
|
if get_option('tracy_no_callstack_inlines')
|
||||||
tracy_compile_args += ['-DTRACY_NO_CALLSTACK_INLINES']
|
tracy_common_args += ['-DTRACY_NO_CALLSTACK_INLINES']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_only_localhost')
|
if get_option('tracy_only_localhost')
|
||||||
tracy_compile_args += ['-DTRACY_ONLY_LOCALHOST']
|
tracy_common_args += ['-DTRACY_ONLY_LOCALHOST']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_no_broadcast')
|
if get_option('tracy_no_broadcast')
|
||||||
tracy_compile_args += ['-DTRACY_NO_BROADCAST']
|
tracy_common_args += ['-DTRACY_NO_BROADCAST']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_only_ipv4')
|
if get_option('tracy_only_ipv4')
|
||||||
tracy_compile_args += ['-DTRACY_ONLY_IPV4']
|
tracy_common_args += ['-DTRACY_ONLY_IPV4']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_no_code_transfer')
|
if get_option('tracy_no_code_transfer')
|
||||||
tracy_compile_args += ['-DTRACY_NO_CODE_TRANSFER']
|
tracy_common_args += ['-DTRACY_NO_CODE_TRANSFER']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_no_context_switch')
|
if get_option('tracy_no_context_switch')
|
||||||
tracy_compile_args += ['-DTRACY_NO_CONTEXT_SWITCH']
|
tracy_common_args += ['-DTRACY_NO_CONTEXT_SWITCH']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_no_exit')
|
if get_option('tracy_no_exit')
|
||||||
tracy_compile_args += ['-DTRACY_NO_EXIT']
|
tracy_common_args += ['-DTRACY_NO_EXIT']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_no_sampling')
|
if get_option('tracy_no_sampling')
|
||||||
tracy_compile_args += ['-DTRACY_NO_SAMPLING']
|
tracy_common_args += ['-DTRACY_NO_SAMPLING']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_no_verify')
|
if get_option('tracy_no_verify')
|
||||||
tracy_compile_args += ['-DTRACY_NO_VERIFY']
|
tracy_common_args += ['-DTRACY_NO_VERIFY']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_no_vsync_capture')
|
if get_option('tracy_no_vsync_capture')
|
||||||
tracy_compile_args += ['-DTRACY_NO_VSYNC_CAPTURE']
|
tracy_common_args += ['-DTRACY_NO_VSYNC_CAPTURE']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_no_frame_image')
|
if get_option('tracy_no_frame_image')
|
||||||
tracy_compile_args += ['-DTRACY_NO_FRAME_IMAGE']
|
tracy_common_args += ['-DTRACY_NO_FRAME_IMAGE']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_no_system_tracing')
|
if get_option('tracy_no_system_tracing')
|
||||||
tracy_compile_args += ['-DTRACY_NO_SYSTEM_TRACING']
|
tracy_common_args += ['-DTRACY_NO_SYSTEM_TRACING']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_patchable_nopsleds')
|
if get_option('tracy_patchable_nopsleds')
|
||||||
tracy_compile_args += ['-DTRACY_PATCHABLE_NOPSLEDS']
|
tracy_common_args += ['-DTRACY_PATCHABLE_NOPSLEDS']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_delayed_init')
|
if get_option('tracy_delayed_init')
|
||||||
tracy_compile_args += ['-DTRACY_DELAYED_INIT']
|
tracy_common_args += ['-DTRACY_DELAYED_INIT']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_manual_lifetime')
|
if get_option('tracy_manual_lifetime')
|
||||||
tracy_compile_args += ['-DTRACY_MANUAL_LIFETIME']
|
tracy_common_args += ['-DTRACY_MANUAL_LIFETIME']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_fibers')
|
if get_option('tracy_fibers')
|
||||||
tracy_compile_args += ['-DTRACY_FIBERS']
|
tracy_common_args += ['-DTRACY_FIBERS']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_timer_fallback')
|
if get_option('tracy_timer_fallback')
|
||||||
tracy_compile_args += ['-DTRACY_TIMER_FALLBACK']
|
tracy_common_args += ['-DTRACY_TIMER_FALLBACK']
|
||||||
endif
|
|
||||||
|
|
||||||
tracy_shared_libs = get_option('tracy_shared_libs')
|
|
||||||
if tracy_shared_libs
|
|
||||||
add_project_arguments('-DTRACY_EXPORTS', language : 'cpp')
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if get_option('tracy_no_crash_handler')
|
if get_option('tracy_no_crash_handler')
|
||||||
tracy_compile_args += ['-DTRACY_NO_CRASH_HANDLER']
|
tracy_common_args += ['-DTRACY_NO_CRASH_HANDLER']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
add_project_arguments(tracy_compile_args, language : 'cpp')
|
tracy_shared_libs = get_option('default_library') == 'shared'
|
||||||
|
if not tracy_shared_libs and get_option('tracy_shared_libs')
|
||||||
|
warning('tracy_shared_libs is set to true, but default_library is set to static. Building static library.')
|
||||||
|
endif
|
||||||
|
|
||||||
|
if tracy_shared_libs
|
||||||
|
tracy_compile_args += ['-DTRACY_EXPORTS']
|
||||||
|
endif
|
||||||
|
|
||||||
threads_dep = dependency('threads')
|
threads_dep = dependency('threads')
|
||||||
|
|
||||||
if host_machine.system() == 'windows'
|
if host_machine.system() == 'windows'
|
||||||
add_project_arguments('-DWINVER=0x0601', '-D_WIN32_WINNT=0x0601', language: 'cpp')
|
tracy_compile_args += ['-DWINVER=0x0601', '-D_WIN32_WINNT=0x0601']
|
||||||
endif
|
endif
|
||||||
|
|
||||||
includes = [
|
includes = [
|
||||||
@ -167,25 +173,20 @@ if compiler.get_id() != 'msvc'
|
|||||||
override_options += 'cpp_std=c++11'
|
override_options += 'cpp_std=c++11'
|
||||||
endif
|
endif
|
||||||
|
|
||||||
if tracy_shared_libs
|
tracy_compile_args += tracy_common_args
|
||||||
tracy = shared_library('tracy', tracy_src, tracy_header_files,
|
|
||||||
|
tracy = library('tracy', tracy_src, tracy_header_files,
|
||||||
dependencies : [ threads_dep ],
|
dependencies : [ threads_dep ],
|
||||||
include_directories : tracy_public_include_dirs,
|
include_directories : tracy_public_include_dirs,
|
||||||
|
cpp_args : tracy_compile_args,
|
||||||
override_options : override_options,
|
override_options : override_options,
|
||||||
install : true)
|
install : true)
|
||||||
else
|
|
||||||
tracy = static_library('tracy', tracy_src, tracy_header_files,
|
|
||||||
dependencies : [ threads_dep ],
|
|
||||||
include_directories : tracy_public_include_dirs,
|
|
||||||
override_options : override_options,
|
|
||||||
install : true)
|
|
||||||
endif
|
|
||||||
|
|
||||||
install_headers(includes, subdir : 'tracy')
|
install_headers(includes, subdir : 'tracy')
|
||||||
install_headers(common_includes, subdir : 'common')
|
install_headers(common_includes, subdir : 'common')
|
||||||
install_headers(client_includes, subdir : 'client')
|
install_headers(client_includes, subdir : 'client')
|
||||||
|
|
||||||
tracy_dep_compile_args = tracy_compile_args
|
tracy_dep_compile_args = tracy_common_args
|
||||||
|
|
||||||
if tracy_shared_libs
|
if tracy_shared_libs
|
||||||
tracy_dep_compile_args += [ '-DTRACY_IMPORTS' ]
|
tracy_dep_compile_args += [ '-DTRACY_IMPORTS' ]
|
||||||
|
@ -19,5 +19,5 @@ option('tracy_timer_fallback', type : 'boolean', value : false, description : 'U
|
|||||||
option('tracy_delayed_init', type : 'boolean', value : false, description : 'Enable delayed initialization of the library (init on first call)')
|
option('tracy_delayed_init', type : 'boolean', value : false, description : 'Enable delayed initialization of the library (init on first call)')
|
||||||
option('tracy_manual_lifetime', type : 'boolean', value : false, description : 'Enable the manual lifetime management of the profile')
|
option('tracy_manual_lifetime', type : 'boolean', value : false, description : 'Enable the manual lifetime management of the profile')
|
||||||
option('tracy_fibers', type : 'boolean', value : false, description : 'Enable fibers support')
|
option('tracy_fibers', type : 'boolean', value : false, description : 'Enable fibers support')
|
||||||
option('tracy_shared_libs', type : 'boolean', value : false, description : 'Builds Tracy as a shared object')
|
option('tracy_shared_libs', type : 'boolean', value : false, description : 'Builds Tracy as a shared object (deprecated in favour of default_library=shared)', deprecated : true)
|
||||||
option('tracy_no_crash_handler', type : 'boolean', value : false, description : 'Disable crash handling')
|
option('tracy_no_crash_handler', type : 'boolean', value : false, description : 'Disable crash handling')
|
||||||
|
Loading…
Reference in New Issue
Block a user