From 75818f26ebf7d2a641eef3262b26b80f48d1b137 Mon Sep 17 00:00:00 2001 From: Kim Kulling Date: Wed, 11 Nov 2020 21:13:17 +0100 Subject: [PATCH] closes https://github.com/assimp/assimp/issues/3187 Do not use pthread for android --- test/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 7f6d2ac86..df58846ec 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -232,6 +232,8 @@ SET_PROPERTY( TARGET assimp PROPERTY DEBUG_POSTFIX ${CMAKE_DEBUG_POSTFIX} ) IF( WIN32 ) SET( platform_libs ) +ELSEIF(ANDROID) + SET( platform_libs ) ELSE() SET( platform_libs pthread ) ENDIF()