mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 05:17:52 +00:00
Merge pull request #125 from MerryMage/bundled-unicorn
Unicorn build fixups
This commit is contained in:
commit
1bcc233245
1 changed files with 6 additions and 3 deletions
|
@ -15,6 +15,8 @@ CMAKE_DEPENDENT_OPTION(YUZU_USE_BUNDLED_SDL2 "Download bundled SDL2 binaries" ON
|
||||||
option(ENABLE_QT "Enable the Qt frontend" ON)
|
option(ENABLE_QT "Enable the Qt frontend" ON)
|
||||||
CMAKE_DEPENDENT_OPTION(YUZU_USE_BUNDLED_QT "Download bundled Qt binaries" ON "ENABLE_SDL2;MSVC" OFF)
|
CMAKE_DEPENDENT_OPTION(YUZU_USE_BUNDLED_QT "Download bundled Qt binaries" ON "ENABLE_SDL2;MSVC" OFF)
|
||||||
|
|
||||||
|
option(YUZU_USE_BUNDLED_UNICORN "Build/Download bundled Unicorn" ON)
|
||||||
|
|
||||||
if(NOT EXISTS ${CMAKE_SOURCE_DIR}/.git/hooks/pre-commit)
|
if(NOT EXISTS ${CMAKE_SOURCE_DIR}/.git/hooks/pre-commit)
|
||||||
message(STATUS "Copying pre-commit hook")
|
message(STATUS "Copying pre-commit hook")
|
||||||
file(COPY hooks/pre-commit
|
file(COPY hooks/pre-commit
|
||||||
|
@ -209,8 +211,7 @@ else()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# If unicorn isn't found, msvc -> download bundled unicorn; everyone else -> build external
|
# If unicorn isn't found, msvc -> download bundled unicorn; everyone else -> build external
|
||||||
find_package(Unicorn QUIET)
|
if (YUZU_USE_BUNDLED_UNICORN)
|
||||||
if (NOT UNICORN_FOUND)
|
|
||||||
if (MSVC)
|
if (MSVC)
|
||||||
message(STATUS "unicorn not found, falling back to bundled")
|
message(STATUS "unicorn not found, falling back to bundled")
|
||||||
# Detect toolchain and platform
|
# Detect toolchain and platform
|
||||||
|
@ -249,7 +250,7 @@ if (NOT UNICORN_FOUND)
|
||||||
find_package(PythonInterp 2.7 REQUIRED)
|
find_package(PythonInterp 2.7 REQUIRED)
|
||||||
|
|
||||||
add_custom_command(OUTPUT ${LIBUNICORN_LIBRARY}
|
add_custom_command(OUTPUT ${LIBUNICORN_LIBRARY}
|
||||||
COMMAND ${CMAKE_COMMAND} -E env UNICORN_ARCHS="aarch64" PYTHON="${PYTHON_EXECUTABLE}" /bin/sh make.sh
|
COMMAND ${CMAKE_COMMAND} -E env UNICORN_ARCHS="aarch64" PYTHON="${PYTHON_EXECUTABLE}" /bin/sh make.sh macos-universal-no
|
||||||
WORKING_DIRECTORY ${UNICORN_PREFIX}
|
WORKING_DIRECTORY ${UNICORN_PREFIX}
|
||||||
)
|
)
|
||||||
# ALL makes this custom target build every time
|
# ALL makes this custom target build every time
|
||||||
|
@ -259,6 +260,8 @@ if (NOT UNICORN_FOUND)
|
||||||
)
|
)
|
||||||
unset(UNICORN_LIB_NAME)
|
unset(UNICORN_LIB_NAME)
|
||||||
endif()
|
endif()
|
||||||
|
else()
|
||||||
|
find_package(Unicorn REQUIRED)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (UNICORN_FOUND)
|
if (UNICORN_FOUND)
|
||||||
|
|
Loading…
Reference in a new issue