diff options
author | RSDuck <RSDuck@users.noreply.github.com> | 2021-07-24 16:20:03 +0200 |
---|---|---|
committer | RSDuck <RSDuck@users.noreply.github.com> | 2021-07-24 16:20:03 +0200 |
commit | 6944fdbe781cd30da109eb47dea86158ec1f8ebf (patch) | |
tree | ee0427b2570c94dbe2aa8fe54218347f5483f11f /cmake | |
parent | c9b918d3051891b2a50c022a8c1666f5dc49b727 (diff) |
add support for JIT profiling with VTune
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/FindVTune.cmake | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cmake/FindVTune.cmake b/cmake/FindVTune.cmake new file mode 100644 index 0000000..3c16dba --- /dev/null +++ b/cmake/FindVTune.cmake @@ -0,0 +1,5 @@ + +find_path(VTUNE_PATH "") + +include_directories("${VTUNE_PATH}/include") +link_directories("${VTUNE_PATH}/lib64") |