Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Jamulus.pro
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,13 @@ win32 {
ANDROID_ABIS = armeabi-v7a arm64-v8a x86 x86_64
}
ANDROID_VERSION_NAME = $$VERSION
ANDROID_VERSION_CODE = $$system(git log --oneline | wc -l)
# Used by Play Store
ANDROID_VERSION_CODE = 0
!contains(VERSION, .*dev.*) {
exists(".git/config") {
ANDROID_VERSION_CODE = $$system(git rev-list --count HEAD)
}
}
message("Setting ANDROID_VERSION_NAME=$${ANDROID_VERSION_NAME} ANDROID_VERSION_CODE=$${ANDROID_VERSION_CODE}")

# liboboe requires C++17 for std::timed_mutex
Expand Down
Loading