add support for JIT profiling with VTune

This commit is contained in:
RSDuck
2021-07-24 16:20:03 +02:00
parent c9b918d305
commit 6944fdbe78
5 changed files with 67 additions and 0 deletions

View File

@ -124,3 +124,7 @@ else()
target_link_libraries(core rt)
endif()
endif()
if (ENABLE_JIT_PROFILING)
target_link_libraries(core jitprofiling)
endif()