mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
IOS CMAKE build settings
This commit is contained in:
parent
d8a88d058e
commit
f5bd346573
6 changed files with 42 additions and 21 deletions
|
@ -27,6 +27,9 @@
|
||||||
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#
|
#
|
||||||
# Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
|
# Parts of this file are originally copyright (c) 2012-2013 The Cryptonote developers
|
||||||
|
if (IOS)
|
||||||
|
INCLUDE(CmakeLists_IOS.txt)
|
||||||
|
endif()
|
||||||
|
|
||||||
cmake_minimum_required(VERSION 2.8.7)
|
cmake_minimum_required(VERSION 2.8.7)
|
||||||
|
|
||||||
|
@ -77,7 +80,7 @@ if (ARM_TEST STREQUAL "arm")
|
||||||
endif()
|
endif()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if (ARM_ID STREQUAL "aarch64")
|
if (ARM_ID STREQUAL "aarch64" OR ARM_ID STREQUAL "arm64")
|
||||||
set(ARM 1)
|
set(ARM 1)
|
||||||
set(ARM8 1)
|
set(ARM8 1)
|
||||||
endif()
|
endif()
|
||||||
|
@ -312,7 +315,7 @@ else()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
# Handle OpenSSL, used for sha256sum on binary updates
|
# Handle OpenSSL, used for sha256sum on binary updates
|
||||||
if (APPLE)
|
if (APPLE AND NOT IOS)
|
||||||
if (NOT OpenSSL_DIR)
|
if (NOT OpenSSL_DIR)
|
||||||
EXECUTE_PROCESS(COMMAND brew --prefix openssl
|
EXECUTE_PROCESS(COMMAND brew --prefix openssl
|
||||||
OUTPUT_VARIABLE OPENSSL_ROOT_DIR
|
OUTPUT_VARIABLE OPENSSL_ROOT_DIR
|
||||||
|
@ -322,7 +325,7 @@ if (APPLE)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
find_package(OpenSSL REQUIRED)
|
find_package(OpenSSL REQUIRED)
|
||||||
if(STATIC)
|
if(STATIC AND NOT IOS)
|
||||||
if(UNIX)
|
if(UNIX)
|
||||||
set(OPENSSL_LIBRARIES "${OPENSSL_LIBRARIES};${CMAKE_DL_LIBS}")
|
set(OPENSSL_LIBRARIES "${OPENSSL_LIBRARIES};${CMAKE_DL_LIBS}")
|
||||||
endif()
|
endif()
|
||||||
|
@ -337,7 +340,7 @@ endif()
|
||||||
add_subdirectory(external)
|
add_subdirectory(external)
|
||||||
|
|
||||||
# Final setup for miniupnpc
|
# Final setup for miniupnpc
|
||||||
if(UPNP_STATIC)
|
if(UPNP_STATIC OR IOS)
|
||||||
add_definitions("-DUPNP_STATIC")
|
add_definitions("-DUPNP_STATIC")
|
||||||
else()
|
else()
|
||||||
add_definitions("-DUPNP_DYNAMIC")
|
add_definitions("-DUPNP_DYNAMIC")
|
||||||
|
@ -540,8 +543,9 @@ else()
|
||||||
|
|
||||||
endif(ARM)
|
endif(ARM)
|
||||||
|
|
||||||
if(ANDROID AND NOT BUILD_GUI_DEPS STREQUAL "ON")
|
if(ANDROID AND NOT BUILD_GUI_DEPS STREQUAL "ON" OR IOS)
|
||||||
#From Android 5: "only position independent executables (PIE) are supported"
|
#From Android 5: "only position independent executables (PIE) are supported"
|
||||||
|
message(STATUS "Enabling PIE executable")
|
||||||
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIE")
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIE")
|
||||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIE")
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIE")
|
||||||
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_CXX_FLAGS} -fPIE -pie")
|
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_CXX_FLAGS} -fPIE -pie")
|
||||||
|
@ -650,7 +654,7 @@ list(APPEND EXTRA_LIBRARIES ${CMAKE_DL_LIBS})
|
||||||
if(ANDROID)
|
if(ANDROID)
|
||||||
set(ATOMIC libatomic.a)
|
set(ATOMIC libatomic.a)
|
||||||
endif()
|
endif()
|
||||||
if(CMAKE_C_COMPILER_ID STREQUAL "Clang" AND ARCH_WIDTH EQUAL "32")
|
if(CMAKE_C_COMPILER_ID STREQUAL "Clang" AND ARCH_WIDTH EQUAL "32" AND NOT IOS)
|
||||||
find_library(ATOMIC atomic)
|
find_library(ATOMIC atomic)
|
||||||
list(APPEND EXTRA_LIBRARIES ${ATOMIC})
|
list(APPEND EXTRA_LIBRARIES ${ATOMIC})
|
||||||
endif()
|
endif()
|
||||||
|
|
7
external/CMakeLists.txt
vendored
7
external/CMakeLists.txt
vendored
|
@ -34,11 +34,12 @@
|
||||||
# We always compile if we are building statically to reduce static dependency issues...
|
# We always compile if we are building statically to reduce static dependency issues...
|
||||||
# ...except for FreeBSD, because FreeBSD is a special case that doesn't play well with
|
# ...except for FreeBSD, because FreeBSD is a special case that doesn't play well with
|
||||||
# others.
|
# others.
|
||||||
|
if(NOT IOS)
|
||||||
find_package(Miniupnpc QUIET)
|
find_package(Miniupnpc QUIET)
|
||||||
|
endif()
|
||||||
|
|
||||||
# If we have the correct shared version and we're not building static, use it
|
# If we have the correct shared version and we're not building static, use it
|
||||||
if(STATIC)
|
if(STATIC OR IOS)
|
||||||
set(USE_SHARED_MINIUPNPC false)
|
set(USE_SHARED_MINIUPNPC false)
|
||||||
elseif(MINIUPNP_FOUND AND MINIUPNPC_VERSION_1_7_OR_HIGHER)
|
elseif(MINIUPNP_FOUND AND MINIUPNPC_VERSION_1_7_OR_HIGHER)
|
||||||
set(USE_SHARED_MINIUPNPC true)
|
set(USE_SHARED_MINIUPNPC true)
|
||||||
|
|
7
external/unbound/CMakeLists.txt
vendored
7
external/unbound/CMakeLists.txt
vendored
|
@ -215,6 +215,11 @@ endif ()
|
||||||
|
|
||||||
|
|
||||||
if (INSTALL_VENDORED_LIBUNBOUND)
|
if (INSTALL_VENDORED_LIBUNBOUND)
|
||||||
|
if(IOS)
|
||||||
|
set(lib_folder lib-${ARCH})
|
||||||
|
else()
|
||||||
|
set(lib_folder lib)
|
||||||
|
endif()
|
||||||
install(TARGETS unbound
|
install(TARGETS unbound
|
||||||
ARCHIVE DESTINATION lib)
|
ARCHIVE DESTINATION ${lib_folder})
|
||||||
endif()
|
endif()
|
||||||
|
|
|
@ -101,18 +101,24 @@ add_subdirectory(crypto)
|
||||||
add_subdirectory(ringct)
|
add_subdirectory(ringct)
|
||||||
add_subdirectory(cryptonote_basic)
|
add_subdirectory(cryptonote_basic)
|
||||||
add_subdirectory(cryptonote_core)
|
add_subdirectory(cryptonote_core)
|
||||||
add_subdirectory(blockchain_db)
|
if(NOT IOS)
|
||||||
|
add_subdirectory(blockchain_db)
|
||||||
|
endif()
|
||||||
add_subdirectory(mnemonics)
|
add_subdirectory(mnemonics)
|
||||||
add_subdirectory(rpc)
|
if(NOT IOS)
|
||||||
|
add_subdirectory(rpc)
|
||||||
|
endif()
|
||||||
add_subdirectory(wallet)
|
add_subdirectory(wallet)
|
||||||
add_subdirectory(p2p)
|
if(NOT IOS)
|
||||||
|
add_subdirectory(p2p)
|
||||||
|
endif()
|
||||||
add_subdirectory(cryptonote_protocol)
|
add_subdirectory(cryptonote_protocol)
|
||||||
|
if(NOT IOS)
|
||||||
add_subdirectory(simplewallet)
|
add_subdirectory(simplewallet)
|
||||||
add_subdirectory(daemonizer)
|
add_subdirectory(daemonizer)
|
||||||
add_subdirectory(daemon)
|
add_subdirectory(daemon)
|
||||||
|
add_subdirectory(blockchain_utilities)
|
||||||
add_subdirectory(blockchain_utilities)
|
endif()
|
||||||
|
|
||||||
if(PER_BLOCK_CHECKPOINT)
|
if(PER_BLOCK_CHECKPOINT)
|
||||||
add_subdirectory(blocks)
|
add_subdirectory(blocks)
|
||||||
|
|
|
@ -93,7 +93,7 @@ endif()
|
||||||
# Because of the way Qt works on android with JNI, the code does not live in the main android thread
|
# Because of the way Qt works on android with JNI, the code does not live in the main android thread
|
||||||
# So this code runs with a 1 MB default stack size.
|
# So this code runs with a 1 MB default stack size.
|
||||||
# This will force the use of the heap for the allocation of the scratchpad
|
# This will force the use of the heap for the allocation of the scratchpad
|
||||||
if (ANDROID)
|
if (ANDROID OR IOS)
|
||||||
if( BUILD_GUI_DEPS )
|
if( BUILD_GUI_DEPS )
|
||||||
add_definitions(-DFORCE_USE_HEAP=1)
|
add_definitions(-DFORCE_USE_HEAP=1)
|
||||||
endif()
|
endif()
|
||||||
|
|
|
@ -132,8 +132,13 @@ if (BUILD_GUI_DEPS)
|
||||||
list(APPEND objlibs $<TARGET_OBJECTS:obj_${lib}>) # matches naming convention in src/CMakeLists.txt
|
list(APPEND objlibs $<TARGET_OBJECTS:obj_${lib}>) # matches naming convention in src/CMakeLists.txt
|
||||||
endforeach()
|
endforeach()
|
||||||
add_library(wallet_merged STATIC ${objlibs})
|
add_library(wallet_merged STATIC ${objlibs})
|
||||||
|
if(IOS)
|
||||||
|
set(lib_folder lib-${ARCH})
|
||||||
|
else()
|
||||||
|
set(lib_folder lib)
|
||||||
|
endif()
|
||||||
install(TARGETS wallet_merged
|
install(TARGETS wallet_merged
|
||||||
ARCHIVE DESTINATION lib)
|
ARCHIVE DESTINATION ${lib_folder})
|
||||||
|
|
||||||
install(FILES ${wallet_api_headers}
|
install(FILES ${wallet_api_headers}
|
||||||
DESTINATION include/wallet)
|
DESTINATION include/wallet)
|
||||||
|
|
Loading…
Reference in a new issue