1
0
mirror of https://github.com/nlohmann/json synced 2024-09-19 14:20:01 +00:00

Fix typo in test.cmake (#3951)

This commit is contained in:
theevilone45 2023-03-05 14:12:18 +01:00 committed by GitHub
parent 660d0b5856
commit b504dca35a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -259,7 +259,7 @@ function(json_test_should_build_32bit_test build_32bit_var build_32bit_only_var
# check if compiler is targeting 32bit by default
include(CheckTypeSize)
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.")
set(${build_32bit_var} ON)
else()