mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2024-11-14 05:17:40 -07: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()
|