We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56787b6 commit 1ff3033Copy full SHA for 1ff3033
CMakeLists.txt
@@ -562,9 +562,11 @@ endif()
562
if (WIN32)
563
set(LIBS_BASE ${LIBS_BASE} winmm ws2_32)
564
elseif (NACL)
565
- find_library(NACL_EXCEPTION nacl_exception)
566
- find_library(NACL_MINIDUMP minidump_generator)
567
- set(LIBS_BASE ${LIBS_BASE} ${NACL_MINIDUMP} ${NACL_EXCEPTION} )
+ if (NOT USE_NACL_SAIGO)
+ find_library(NACL_EXCEPTION nacl_exception)
+ find_library(NACL_MINIDUMP minidump_generator)
568
+ set(LIBS_BASE ${LIBS_BASE} ${NACL_MINIDUMP} ${NACL_EXCEPTION})
569
+ endif()
570
else()
571
find_library(LIBM m)
572
if (LIBM)
0 commit comments