File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 88 push :
99 branches : [ main, develop ]
1010 schedule :
11- - cron : ' 07 18 * * 6'
11+ - cron : ' 7 18 * * 6'
1212 workflow_dispatch :
1313 inputs :
1414 ref :
Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ add_subdirectory(plugins)
197197# Link Perfetto to phlex executable if enabled
198198if (ENABLE_PERFETTO AND TARGET phlex)
199199 target_link_libraries (phlex PRIVATE Perfetto::Perfetto)
200- target_compile_definitions (phlex PRIVATE PERFETTO_ENABLE_TRACING=1)
200+
201201endif ()
202202
203203if (PHLEX_USE_FORM)
Original file line number Diff line number Diff line change @@ -20,9 +20,11 @@ find_file(
2020find_package_handle_standard_args(Perfetto REQUIRED_VARS Perfetto_INCLUDE_DIR Perfetto_SOURCE)
2121
2222if (Perfetto_FOUND AND NOT TARGET Perfetto::Perfetto)
23+ find_package (Threads REQUIRED)
2324 add_library (perfetto_impl STATIC "${Perfetto_SOURCE} " )
2425 target_include_directories (perfetto_impl PUBLIC "${Perfetto_INCLUDE_DIR} " )
2526 target_compile_definitions (perfetto_impl PUBLIC PERFETTO_ENABLE_TRACING=1)
27+ target_link_libraries (perfetto_impl PUBLIC Threads::Threads)
2628 add_library (Perfetto::Perfetto ALIAS perfetto_impl)
2729endif ()
2830
You can’t perform that action at this time.
0 commit comments