diff options
author | James Rowe <jroweboy@gmail.com> | 2018-09-21 05:39:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-21 05:39:15 +0200 |
commit | 8606995515757e7528380877cf44d6ffd4560266 (patch) | |
tree | be11300e23bd1eb7d8d8ff4838f43ae7b6633145 /CMakeLists.txt | |
parent | Merge pull request #1337 from DarkLordZach/create-fs-cmd (diff) | |
parent | Update MinGWCross.cmake to lowercase (diff) | |
download | yuzu-8606995515757e7528380877cf44d6ffd4560266.tar yuzu-8606995515757e7528380877cf44d6ffd4560266.tar.gz yuzu-8606995515757e7528380877cf44d6ffd4560266.tar.bz2 yuzu-8606995515757e7528380877cf44d6ffd4560266.tar.lz yuzu-8606995515757e7528380877cf44d6ffd4560266.tar.xz yuzu-8606995515757e7528380877cf44d6ffd4560266.tar.zst yuzu-8606995515757e7528380877cf44d6ffd4560266.zip |
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 500d099fc..30642edd7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -269,10 +269,18 @@ if (YUZU_USE_BUNDLED_UNICORN) find_package(PythonInterp 2.7 REQUIRED) - add_custom_command(OUTPUT ${LIBUNICORN_LIBRARY} - COMMAND ${CMAKE_COMMAND} -E env UNICORN_ARCHS="aarch64" PYTHON="${PYTHON_EXECUTABLE}" /bin/sh make.sh macos-universal-no - WORKING_DIRECTORY ${UNICORN_PREFIX} - ) + if (MINGW) + add_custom_command(OUTPUT ${LIBUNICORN_LIBRARY} + COMMAND ${CMAKE_COMMAND} -E env UNICORN_ARCHS="aarch64" PYTHON="${PYTHON_EXECUTABLE}" /bin/sh make.sh cross-win64 + WORKING_DIRECTORY ${UNICORN_PREFIX} + ) + else() + add_custom_command(OUTPUT ${LIBUNICORN_LIBRARY} + COMMAND ${CMAKE_COMMAND} -E env UNICORN_ARCHS="aarch64" PYTHON="${PYTHON_EXECUTABLE}" /bin/sh make.sh macos-universal-no + WORKING_DIRECTORY ${UNICORN_PREFIX} + ) + endif() + # ALL makes this custom target build every time # but it won't actually build if LIBUNICORN_LIBRARY is up to date add_custom_target(unicorn-build ALL @@ -286,6 +294,7 @@ endif() if (UNICORN_FOUND) add_library(unicorn INTERFACE) + add_dependencies(unicorn unicorn-build) target_link_libraries(unicorn INTERFACE "${LIBUNICORN_LIBRARY}") target_include_directories(unicorn INTERFACE "${LIBUNICORN_INCLUDE_DIR}") else() |