1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-16 11:09:11 +00:00

Fix: remove remainining usages of FALSE in CMake files

This commit is contained in:
Dan Villiom Podlaski Christiansen
2020-06-05 20:26:47 +02:00
committed by Charles Pigott
parent 70905ee82e
commit e6be8be19d

View File

@@ -58,7 +58,7 @@ elseif(CMAKE_CXX_COMPILER_LOADED)
include(CheckCXXSourceCompiles)
else()
# 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()
# iconv can only be provided in libc on a POSIX system.
@@ -94,7 +94,7 @@ if(NOT DEFINED Iconv_IS_BUILT_IN)
endif()
cmake_pop_check_state()
else()
set(Iconv_IS_BUILT_IN FALSE)
set(Iconv_IS_BUILT_IN NO)
endif()
endif()