Skip to content

Commit

Permalink
This works on Arm too...
Browse files Browse the repository at this point in the history
  • Loading branch information
agatti committed Aug 30, 2022
1 parent 538cde6 commit 5752035
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -96,12 +96,12 @@ set(LIBS ${LIBS} Qt6::Widgets Qt6::Gui Qt6::Core Qt6::Xml Qt6::OpenGL Qt6::OpenG
#
# Configuration
#
if (CMAKE_SIZEOF_VOID_P MATCHES 8) # if x64
message(STATUS "x64 configuration")
set(CONFIGURATION "x64")
else() # if x86
message(STATUS "x86 configuration")
set(CONFIGURATION "x86")
if (CMAKE_SIZEOF_VOID_P MATCHES 8) # if 64-bits
message(STATUS "64 bits configuration")
set(CONFIGURATION "BUILD_64")
else() # if 32-bits
message(STATUS "32 bits configuration")
set(CONFIGURATION "BUILD_32")
endif()

#
Expand Down

0 comments on commit 5752035

Please sign in to comment.