Skip to content

Commit

Permalink
Put APK architecture after the version
Browse files Browse the repository at this point in the history
In the name of the APKs, like it is for other outputs, rather than
putting it in front of the version.
  • Loading branch information
askmeaboutlo0m committed Dec 8, 2023
1 parent 67fef09 commit 58bd066
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/desktop/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ elseif(ANDROID)
# This directory will get translations and other generated files added to it
# so it cannot be just a symlink to the source assets directory
file(MAKE_DIRECTORY "${build_time_assets_dir}")
set(output_apk "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/$<TARGET_PROPERTY:drawpile,OUTPUT_NAME>-${ANDROID_ABI}-${PROJECT_VERSION}.apk")
set(output_apk "${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/$<TARGET_PROPERTY:drawpile,OUTPUT_NAME>-${PROJECT_VERSION}-${ANDROID_ABI}.apk")
include(GetSharedLibs)
get_shared_libs(android_extra_libs drawpile)

Expand Down

0 comments on commit 58bd066

Please sign in to comment.