1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0026830: TKernel should not be linked with pthread and rt

pthread and rt are not linked on android and qnx
This commit is contained in:
ibs 2015-11-02 14:40:15 +03:00
parent 3b523c4cb2
commit 13e3622ca7

View File

@ -25,7 +25,7 @@ if (WIN32)
list( APPEND USED_LIBS gdi32.lib )
list( APPEND USED_LIBS user32.lib )
list( APPEND USED_LIBS kernel32.lib )
elseif (NOT APPLE)
elseif (NOT APPLE AND NOT ANDROID AND NOT QNX)
list( APPEND USED_LIBS pthread )
list( APPEND USED_LIBS rt )
endif()