CMake: Fix (potentially) invalid expression
This commit is contained in:
parent
6a038d2150
commit
0c05433e2f
@ -228,7 +228,7 @@ function(json_test_should_build_32bit_test build_32bit_var build_32bit_only_var
|
|||||||
# check if compiler is targeting 32bit by default
|
# check if compiler is targeting 32bit by default
|
||||||
include(CheckTypeSize)
|
include(CheckTypeSize)
|
||||||
check_type_size("size_t" sizeof_size_t LANGUAGE CXX)
|
check_type_size("size_t" sizeof_size_t LANGUAGE CXX)
|
||||||
if(sizeof_size_t AND ${sizeof_size_t} EQUAL 4)
|
if(sizeof_size_t AND sizeof_size_t EQUAL 4)
|
||||||
message(STATUS "Auto-enabling 32bit unit test.")
|
message(STATUS "Auto-enabling 32bit unit test.")
|
||||||
set(${build_32bit_var} ON)
|
set(${build_32bit_var} ON)
|
||||||
else()
|
else()
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user