Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
serivesmejia authored Aug 6, 2023
1 parent a549460 commit 0bba4a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set(CMAKE_CXX_STANDARD 20)
project("apriltag")

if(NOT DEFINED ARCH)
if(DEFINED CMAKE_OSX_ARCHITECTURES AND NOT "${CMAKE_OSX_ARCHITECTURES}" STREQUAL ""))
if(DEFINED CMAKE_OSX_ARCHITECTURES AND NOT "${CMAKE_OSX_ARCHITECTURES}" STREQUAL "")
set(ARCH ${CMAKE_OSX_ARCHITECTURES})
else()
set(ARCH ${CMAKE_SYSTEM_PROCESSOR})
Expand Down

0 comments on commit 0bba4a1

Please sign in to comment.