mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-23 12:09:50 +00:00
3b9412fece
Some checks are pending
ci/gh-actions/build / build-ubuntu-without-scanner (push) Waiting to run
ci/gh-actions/guix / cache-sources (push) Waiting to run
ci/gh-actions/guix / x86_64-w64-mingw32 (push) Blocked by required conditions
ci/gh-actions/guix / bundle-logs (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-linux-gnu.no-tor-bundle (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-linux-gnu.pack (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-w64-mingw32.installer (push) Blocked by required conditions
ci/gh-actions/guix / aarch64-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / arm-linux-gnueabihf (push) Blocked by required conditions
ci/gh-actions/guix / arm64-apple-darwin (push) Blocked by required conditions
ci/gh-actions/guix / i686-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / riscv64-linux-gnu (push) Blocked by required conditions
ci/gh-actions/guix / x86_64-apple-darwin (push) Blocked by required conditions
34 lines
No EOL
1.1 KiB
CMake
34 lines
No EOL
1.1 KiB
CMake
set(CMAKE_SYSTEM_NAME @cmake_system_name@)
|
|
|
|
set(CMAKE_C_COMPILER @target@-gcc)
|
|
set(CMAKE_CXX_COMPILER @target@-g++)
|
|
set(CMAKE_FIND_ROOT_PATH @host_prefix@)
|
|
|
|
set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
|
|
set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
|
|
|
|
set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
|
set(CMAKE_FIND_ROOT_PATH @host_prefix@;@wmf_libs@)
|
|
endif()
|
|
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Darwin")
|
|
set(TARGET_SYSROOT @host_prefix@/native/SDK)
|
|
set(CMAKE_SYSROOT ${TARGET_SYSROOT})
|
|
set(CMAKE_OSX_SYSROOT ${TARGET_SYSROOT})
|
|
|
|
set(CMAKE_C_COMPILER clang)
|
|
set(CMAKE_CXX_COMPILER clang++)
|
|
|
|
set(CMAKE_C_FLAGS "@cmake_c_flags@")
|
|
set(CMAKE_CXX_FLAGS "@cmake_cxx_flags@")
|
|
set(CMAKE_OBJC_FLAGS "@cmake_c_flags@")
|
|
set(CMAKE_OBJCXX_FLAGS "@cmake_cxx_flags@")
|
|
set(CMAKE_EXE_LINKER_FLAGS "@cmake_ld_flags@")
|
|
set(CMAKE_MODULE_LINKER_FLAGS "@cmake_ld_flags@")
|
|
set(CMAKE_SHARED_LINKER_FLAGS "@cmake_ld_flags@")
|
|
SET(CMAKE_OSX_DEPLOYMENT_TARGET "11.0")
|
|
|
|
set(CMAKE_INSTALL_NAME_TOOL @target@-install_name_tool)
|
|
endif() |