mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
[Android] Fix PCH build. Clean up DolphinWX cmake file a little bit. Modify our android cmake toolchain file to make the default build location not be source root, because that is stupid.
This commit is contained in:
parent
2e983071c5
commit
58d42f43e3
@ -119,7 +119,7 @@
|
|||||||
# libraries. Automatically turned for NDK r5x and r6x due to GLESv2
|
# libraries. Automatically turned for NDK r5x and r6x due to GLESv2
|
||||||
# problems.
|
# problems.
|
||||||
#
|
#
|
||||||
# LIBRARY_OUTPUT_PATH_ROOT=${CMAKE_SOURCE_DIR} - where to output binary
|
# LIBRARY_OUTPUT_PATH_ROOT=${CMAKE_CURRENT_BINARY_DIR} - where to output binary
|
||||||
# files. See additional details below.
|
# files. See additional details below.
|
||||||
#
|
#
|
||||||
# ANDROID_SET_OBSOLETE_VARIABLES=ON - if set, then toolchain defines some
|
# ANDROID_SET_OBSOLETE_VARIABLES=ON - if set, then toolchain defines some
|
||||||
@ -187,7 +187,7 @@
|
|||||||
#
|
#
|
||||||
# LIBRARY_OUTPUT_PATH_ROOT should be set in cache to determine where Android
|
# LIBRARY_OUTPUT_PATH_ROOT should be set in cache to determine where Android
|
||||||
# libraries will be installed.
|
# libraries will be installed.
|
||||||
# Default is ${CMAKE_SOURCE_DIR}, and the android libs will always be
|
# Default is ${CMAKE_CURRENT_BINARY_DIR}, and the android libs will always be
|
||||||
# under the ${LIBRARY_OUTPUT_PATH_ROOT}/libs/${ANDROID_NDK_ABI_NAME}
|
# under the ${LIBRARY_OUTPUT_PATH_ROOT}/libs/${ANDROID_NDK_ABI_NAME}
|
||||||
# (depending on the target ABI). This is convenient for Android packaging.
|
# (depending on the target ABI). This is convenient for Android packaging.
|
||||||
#
|
#
|
||||||
@ -1431,7 +1431,7 @@ include_directories( SYSTEM "${ANDROID_SYSROOT}/usr/include" ${ANDROID_STL_INCLU
|
|||||||
link_directories( "${CMAKE_INSTALL_PREFIX}/libs/${ANDROID_NDK_ABI_NAME}" )
|
link_directories( "${CMAKE_INSTALL_PREFIX}/libs/${ANDROID_NDK_ABI_NAME}" )
|
||||||
|
|
||||||
# setup output directories
|
# setup output directories
|
||||||
set( LIBRARY_OUTPUT_PATH_ROOT ${CMAKE_SOURCE_DIR} CACHE PATH "root for library output, set this to change where android libs are installed to" )
|
set( LIBRARY_OUTPUT_PATH_ROOT ${CMAKE_CURRENT_BINARY_DIR} CACHE PATH "root for library output, set this to change where android libs are installed to" )
|
||||||
set( CMAKE_INSTALL_PREFIX "${ANDROID_TOOLCHAIN_ROOT}/user" CACHE STRING "path for installing" )
|
set( CMAKE_INSTALL_PREFIX "${ANDROID_TOOLCHAIN_ROOT}/user" CACHE STRING "path for installing" )
|
||||||
|
|
||||||
if(NOT _CMAKE_IN_TRY_COMPILE)
|
if(NOT _CMAKE_IN_TRY_COMPILE)
|
||||||
|
@ -2,7 +2,11 @@ set(CMAKE_FAKELANG_CREATE_STATIC_LIBRARY "touch <TARGET>")
|
|||||||
if(ENABLE_PCH)
|
if(ENABLE_PCH)
|
||||||
# This is actually a .h file, but trick cmake into compiling it as a source file
|
# This is actually a .h file, but trick cmake into compiling it as a source file
|
||||||
set(pch_out_filename "${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/pch.dir/pch.h")
|
set(pch_out_filename "${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles/pch.dir/pch.h")
|
||||||
set(pch_lib_filename "${CMAKE_CURRENT_BINARY_DIR}/libpch.a")
|
if (ANDROID)
|
||||||
|
set(pch_lib_filename "${LIBRARY_OUTPUT_PATH}/libpch.a")
|
||||||
|
else()
|
||||||
|
set(pch_lib_filename "${CMAKE_CURRENT_BINARY_DIR}/libpch.a")
|
||||||
|
endif()
|
||||||
set(pch_src_filename "${CMAKE_CURRENT_SOURCE_DIR}/pch.h")
|
set(pch_src_filename "${CMAKE_CURRENT_SOURCE_DIR}/pch.h")
|
||||||
|
|
||||||
if(APPLE)
|
if(APPLE)
|
||||||
|
@ -191,23 +191,11 @@ if(ANDROID)
|
|||||||
${LIBS}
|
${LIBS}
|
||||||
"-Wl,--no-whole-archive"
|
"-Wl,--no-whole-archive"
|
||||||
)
|
)
|
||||||
if (${CMAKE_SYSTEM_PROCESSOR} MATCHES "mips")
|
|
||||||
set (SO_TARGET "mips")
|
|
||||||
endif()
|
|
||||||
if (${CMAKE_SYSTEM_PROCESSOR} MATCHES "armv7-a")
|
|
||||||
set (SO_TARGET "armeabi-v7a")
|
|
||||||
endif()
|
|
||||||
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "armv5te")
|
|
||||||
set (SO_TARGET "armeabi")
|
|
||||||
endif()
|
|
||||||
if (${CMAKE_SYSTEM_PROCESSOR} MATCHES "i686")
|
|
||||||
set (SO_TARGET "x86")
|
|
||||||
endif()
|
|
||||||
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
||||||
COMMAND mkdir ARGS -p ${CMAKE_SOURCE_DIR}/Source/Android/libs/${SO_TARGET}
|
COMMAND mkdir ARGS -p ${CMAKE_SOURCE_DIR}/Source/Android/libs/${ANDROID_NDK_ABI_NAME}
|
||||||
)
|
)
|
||||||
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
||||||
COMMAND cp ARGS ${CMAKE_SOURCE_DIR}/libs/${SO_TARGET}/lib${DOLPHIN_EXE}.so ${CMAKE_SOURCE_DIR}/Source/Android/libs/${SO_TARGET}/
|
COMMAND cp ARGS ${LIBRARY_OUTPUT_PATH_ROOT}/libs/${ANDROID_NDK_ABI_NAME}/lib${DOLPHIN_EXE}.so ${CMAKE_SOURCE_DIR}/Source/Android/libs/${ANDROID_NDK_ABI_NAME}/
|
||||||
)
|
)
|
||||||
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
add_custom_command(TARGET ${DOLPHIN_EXE} POST_BUILD
|
||||||
COMMAND cp ARGS ${CMAKE_SOURCE_DIR}/Data/Sys/GC/* ${CMAKE_SOURCE_DIR}/Source/Android/assets/
|
COMMAND cp ARGS ${CMAKE_SOURCE_DIR}/Data/Sys/GC/* ${CMAKE_SOURCE_DIR}/Source/Android/assets/
|
||||||
|
Loading…
Reference in New Issue
Block a user