Merge "fix C and SIMD flags completion."

This commit is contained in:
James Zern 2016-02-17 19:22:20 +00:00 committed by Gerrit Code Review
commit 9dbd4aad77

View File

@ -51,7 +51,7 @@ check_c_source_compiles("
find_package(Threads) find_package(Threads)
if(Threads_FOUND) if(Threads_FOUND)
if(CMAKE_USE_PTHREADS_INIT) if(CMAKE_USE_PTHREADS_INIT)
list(APPEND CMAKE_C_FLAGS "-pthread") set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -pthread")
endif() endif()
foreach(PTHREAD_TEST HAVE_PTHREAD_PRIO_INHERIT PTHREAD_CREATE_UNDETACHED) foreach(PTHREAD_TEST HAVE_PTHREAD_PRIO_INHERIT PTHREAD_CREATE_UNDETACHED)
check_c_source_compiles(" check_c_source_compiles("
@ -177,7 +177,7 @@ foreach(I_SIMD RANGE ${WEBP_SIMD_FLAGS_RANGE})
include(CheckCCompilerFlag) include(CheckCCompilerFlag)
check_c_compiler_flag(${SIMD_COMPILE_FLAG} HAS_COMPILE_FLAG) check_c_compiler_flag(${SIMD_COMPILE_FLAG} HAS_COMPILE_FLAG)
if(HAS_COMPILE_FLAG) if(HAS_COMPILE_FLAG)
list(APPEND CMAKE_C_FLAGS ${SIMD_COMPILE_FLAG}) set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${SIMD_COMPILE_FLAG}")
endif() endif()
endif() endif()
endif() endif()