mirror of
https://github.com/yse/easy_profiler.git
synced 2024-12-27 00:21:11 +08:00
Fix Android build
Android does not have libpthread, but instead exposes the pthread functions via Bionic See: https://android.googlesource.com/platform/bionic/+/10ce969/libc/bionic/pthread.c
This commit is contained in:
parent
001a8258bf
commit
c3b4ab124e
@ -220,7 +220,9 @@ easy_define_target_option(easy_profiler EASY_OPTION_PREDEFINED_COLORS EASY_OPTIO
|
|||||||
# Add platform specific compile options:
|
# Add platform specific compile options:
|
||||||
if (UNIX)
|
if (UNIX)
|
||||||
target_compile_options(easy_profiler PRIVATE -Wall -Wno-long-long -Wno-reorder -Wno-braced-scalar-init -pedantic)
|
target_compile_options(easy_profiler PRIVATE -Wall -Wno-long-long -Wno-reorder -Wno-braced-scalar-init -pedantic)
|
||||||
target_link_libraries(easy_profiler pthread)
|
if (!ANDROID)
|
||||||
|
target_link_libraries(easy_profiler pthread)
|
||||||
|
endif()
|
||||||
elseif (WIN32)
|
elseif (WIN32)
|
||||||
target_compile_definitions(easy_profiler PRIVATE -D_WIN32_WINNT=0x0600 -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS)
|
target_compile_definitions(easy_profiler PRIVATE -D_WIN32_WINNT=0x0600 -D_CRT_SECURE_NO_WARNINGS -D_WINSOCK_DEPRECATED_NO_WARNINGS)
|
||||||
target_link_libraries(easy_profiler ws2_32 psapi)
|
target_link_libraries(easy_profiler ws2_32 psapi)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user