CMake: Fix builds outside of CI

This commit is contained in:
tellowkrinkle 2021-08-27 23:27:59 -05:00 committed by GitHub
parent 14cfdafd05
commit b61619cf40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -328,7 +328,7 @@ if(CMAKE_BUILD_STRIP)
endif()
# Enable special stuff for CI builds
if($ENV{CI} STREQUAL "true")
if("$ENV{CI}" STREQUAL "true")
list(APPEND PCSX2_DEFS PCSX2_CI)
endif()