|
|
@@ -35,8 +35,8 @@ include_directories(
|
|
|
${ANDROID_NDK}/sources/android/native_app_glue
|
|
|
${PYTHON_INCLUDE_DIR}
|
|
|
include/AppManager
|
|
|
- lib/curl/include
|
|
|
- lib/openssl/include
|
|
|
+ third_party/curl/include
|
|
|
+ third_party/openssl/include
|
|
|
)
|
|
|
|
|
|
add_subdirectory(third_party/glm)
|
|
|
@@ -45,16 +45,16 @@ add_library(dobby STATIC IMPORTED)
|
|
|
set_target_properties(dobby PROPERTIES IMPORTED_LOCATION ${CMAKE_CURRENT_SOURCE_DIR}/third_party/dobby/libdobby.a)
|
|
|
|
|
|
add_library(zlib STATIC IMPORTED)
|
|
|
-set_target_properties(zlib PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/lib/zlib/lib/libz.a)
|
|
|
+set_target_properties(zlib PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/third_party/zlib/lib/libz.a)
|
|
|
|
|
|
add_library(ssl STATIC IMPORTED)
|
|
|
-set_target_properties(ssl PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/lib/openssl/lib/libssl.a)
|
|
|
+set_target_properties(ssl PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/third_party/openssl/lib/libssl.a)
|
|
|
|
|
|
add_library(crypto STATIC IMPORTED)
|
|
|
-set_target_properties(crypto PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/lib/openssl/lib/libcrypto.a)
|
|
|
+set_target_properties(crypto PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/third_party/openssl/lib/libcrypto.a)
|
|
|
|
|
|
add_library(curl STATIC IMPORTED)
|
|
|
-set_target_properties(curl PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/lib/curl/lib/libcurl.a)
|
|
|
+set_target_properties(curl PROPERTIES IMPORTED_LOCATION ${CMAKE_SOURCE_DIR}/third_party/curl/lib/libcurl.a)
|
|
|
|
|
|
set(asm_syscall
|
|
|
src/asm/syscall.s
|