MuseScore/build/cmake/SetupDependencies.cmake

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
406 B
CMake
Raw Normal View History

include(${CMAKE_CURRENT_LIST_DIR}/GetPlatformInfo.cmake)
2020-12-09 23:04:28 +01:00
if (OS_IS_WIN)
2023-02-13 13:37:26 +01:00
if (MUE_COMPILE_BUILD_64)
2020-12-08 11:48:52 +01:00
set(DEPENDENCIES_DIR "${PROJECT_SOURCE_DIR}/dependencies/libx64")
2023-02-13 13:37:26 +01:00
else()
2020-12-08 11:48:52 +01:00
set(DEPENDENCIES_DIR "${PROJECT_SOURCE_DIR}/dependencies/libx86")
2023-02-13 13:37:26 +01:00
endif()
link_directories(${DEPENDENCIES_DIR})
2020-12-08 22:59:54 +01:00
include_directories(${PROJECT_SOURCE_DIR}/dependencies/include)
2020-12-09 23:04:28 +01:00
endif(OS_IS_WIN)