Skip to content

Commit

Permalink
Remove "wc -l" from Jamulus.pro
Browse files Browse the repository at this point in the history
  • Loading branch information
pljones committed Aug 26, 2024
1 parent d1dfd33 commit 83d6765
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Jamulus.pro
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,13 @@ win32 {
} else:android {
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 = $$size($$list($$system(git log --format=format:1,lines)))
}
}
message("Setting ANDROID_VERSION_NAME=$${ANDROID_VERSION_NAME} ANDROID_VERSION_CODE=$${ANDROID_VERSION_CODE}")

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

0 comments on commit 83d6765

Please sign in to comment.