Fix: remove remainining usages of FALSE in CMake files

pull/167/head
Dan Villiom Podlaski Christiansen 4 years ago committed by Charles Pigott
parent 70905ee82e
commit e6be8be19d

@ -58,7 +58,7 @@ elseif(CMAKE_CXX_COMPILER_LOADED)
include(CheckCXXSourceCompiles) include(CheckCXXSourceCompiles)
else() else()
# If neither C nor CXX are loaded, implicit iconv makes no sense. # If neither C nor CXX are loaded, implicit iconv makes no sense.
set(Iconv_IS_BUILT_IN FALSE) set(Iconv_IS_BUILT_IN NO)
endif() endif()
# iconv can only be provided in libc on a POSIX system. # iconv can only be provided in libc on a POSIX system.
@ -94,7 +94,7 @@ if(NOT DEFINED Iconv_IS_BUILT_IN)
endif() endif()
cmake_pop_check_state() cmake_pop_check_state()
else() else()
set(Iconv_IS_BUILT_IN FALSE) set(Iconv_IS_BUILT_IN NO)
endif() endif()
endif() endif()

Loading…
Cancel
Save