Skip to content

Commit

Permalink
arm64 support - 5
Browse files Browse the repository at this point in the history
  • Loading branch information
omergoktas committed Nov 20, 2024
1 parent 90e5e49 commit 1686d34
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/Deploy.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ function(deploy TARGET)
if(NOT APPIMAGETOOL_EXECUTABLE)
message(STATUS "Could NOT find appimagetool, downloading...")
set(APPIMAGETOOL_EXECUTABLE ${CMAKE_CURRENT_BINARY_DIR}/appimagetool)
set(APPIMAGETOOL_URL "https://github.com/AppImage/AppImageKit/releases/download/continuous/appimagetool-${CMAKE_SYSTEM_PROCESSOR}.AppImage")
set(APPIMAGETOOL_URL "https://github.com/AppImage/AppImageKit/releases/download/13/appimagetool-${CMAKE_SYSTEM_PROCESSOR}.AppImage")
file(DOWNLOAD ${APPIMAGETOOL_URL} ${APPIMAGETOOL_EXECUTABLE} SHOW_PROGRESS)
file(CHMOD ${APPIMAGETOOL_EXECUTABLE} PERMISSIONS OWNER_READ OWNER_EXECUTE)
endif()
Expand Down
2 changes: 2 additions & 0 deletions cmake/Setup.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ endif()
find_package(QT NAMES Qt6 REQUIRED Core)
find_package(Qt${QT_VERSION_MAJOR} REQUIRED Core)

qt_standard_project_setup(REQUIRES 6.7.3 SUPPORTS_UP_TO 6.9.99)

add_compile_definitions(APP_NAME="${CMAKE_PROJECT_NAME}")
add_compile_definitions(APP_VERSION="${CMAKE_PROJECT_VERSION}")
add_compile_definitions(APP_URL="${CMAKE_PROJECT_HOMEPAGE_URL}")
Expand Down

0 comments on commit 1686d34

Please sign in to comment.