mirror of
https://github.com/gflags/gflags.git
synced 2025-04-05 05:25:04 +00:00
Simplify check for strtoll and strtoq.
This commit is contained in:
parent
5250372ab6
commit
0b116eb439
1 changed files with 4 additions and 4 deletions
|
@ -140,10 +140,10 @@ if (MSVC)
|
|||
set (HAVE_strtoll 0)
|
||||
set (HAVE_strtoq 0)
|
||||
else ()
|
||||
foreach (fname IN ITEMS strtoll strtoq)
|
||||
string (TOUPPER "${fname}" FNAME)
|
||||
check_cxx_symbol_exists ("${fname}" stdlib.h HAVE_${FNAME})
|
||||
endforeach ()
|
||||
check_cxx_symbol_exists (strtoll stdlib.h HAVE_STRTOLL)
|
||||
if (NOT HAVE_STRTOLL)
|
||||
check_cxx_symbol_exists (strtoq stdlib.h HAVE_STRTOQ)
|
||||
endif ()
|
||||
endif ()
|
||||
|
||||
set (CMAKE_THREAD_PREFER_PTHREAD TRUE)
|
||||
|
|
Loading…
Add table
Reference in a new issue