Skip to content
Snippets Groups Projects
Commit 6fac638d authored by Alexandr Mruchok's avatar Alexandr Mruchok
Browse files

[+] linked dap_core_android for android

parent cc68e4e0
No related branches found
No related tags found
1 merge request!28Feature 2648
......@@ -15,7 +15,9 @@ add_library(${PROJECT_NAME} STATIC ${CORE_UNIX_SRCS} ${CORE_UNIX_HEADERS}
target_link_libraries(${PROJECT_NAME} dap_core)
if (NOT ANDROID)
if (ANDROID)
target_link_libraries(${PROJECT_NAME} dap_core_android)
else()
target_link_libraries(${PROJECT_NAME} pthread)
endif()
......
......@@ -6,6 +6,9 @@
#include <sys/socket.h>
#include <arpa/inet.h>
#ifdef __ANDROID__
#include "pthread_barrier.h"
#endif
#include "dap_network_monitor.h"
#include "dap_common.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment