Skip to content

Commit

Permalink
fix: cmake configuration naming
Browse files Browse the repository at this point in the history
Change x64/x86 to BUILD_64/BUILD_32 broke the
online installer system.
  • Loading branch information
DorianBDev committed Aug 20, 2024
1 parent 2a930e4 commit 95844ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -113,10 +113,10 @@ set(LIBS ${LIBS} Qt6::Widgets Qt6::Gui Qt6::Core Qt6::Xml Qt6::OpenGL Qt6::OpenG
#
if (CMAKE_SIZEOF_VOID_P MATCHES 8) # if 64-bits
message(STATUS "64 bits configuration")
set(CONFIGURATION "BUILD_64")
set(CONFIGURATION "x64")
else() # if 32-bits
message(STATUS "32 bits configuration")
set(CONFIGURATION "BUILD_32")
set(CONFIGURATION "x86")
endif()

#
Expand Down

0 comments on commit 95844ff

Please sign in to comment.