mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-03-06 21:00:31 +01:00
10 lines
223 B
CMake
10 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()
|