mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-06-28 09:59:41 -06:00
11 lines
223 B
CMake
11 lines
223 B
CMake
|
|
find_path(VTUNE_PATH "")
|
|
|
|
set(VTUNE_INCLUDE_DIR "${VTUNE_PATH}/include")
|
|
|
|
if (WIN32)
|
|
set(VTUNE_LIBRARY "${VTUNE_PATH}/lib64/jitprofiling.lib")
|
|
else()
|
|
set(VTUNE_LIBRARY "${VTUNE_PATH}/lib64/jitprofiling.a")
|
|
endif()
|