Skip to content

Commit

Permalink
Fix architecture in Windows package (#53)
Browse files Browse the repository at this point in the history
Signed-off-by: Juan Cruz Viotti <jv@jviotti.com>
  • Loading branch information
jviotti authored Jun 4, 2024
1 parent b8a513d commit d6b5ae1
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 @@ -56,7 +56,7 @@ endif()
set(CPACK_GENERATOR ZIP)
string(TOLOWER ${CMAKE_SYSTEM_NAME} LOWER_SYSTEM_NAME)
string(TOLOWER ${CMAKE_SYSTEM_PROCESSOR} LOWER_SYSTEM_PROCESSOR)
if(LOWER_SYSTEM_PROCESSOR STREQUAL "AMD64")
if(LOWER_SYSTEM_PROCESSOR STREQUAL "amd64")
set(LOWER_SYSTEM_PROCESSOR "x86_64")
endif()
set(PLATFORM_SUFFIX "${LOWER_SYSTEM_NAME}-${LOWER_SYSTEM_PROCESSOR}")
Expand Down

0 comments on commit d6b5ae1

Please sign in to comment.