MacOS fixes :

fix cmake minimum version for compilation
crash notification in task bar
This commit is contained in:
gaelle.braud 2025-08-21 16:57:48 +02:00 committed by Gaelle Braud
parent 99dd528e55
commit 443bcbf6c6
2 changed files with 3 additions and 3 deletions

View file

@ -25,6 +25,6 @@
// =============================================================================
void notifyEventCountMacOs (int n) {
NSString *badgeStr = (n > 0) ? [NSString stringWithFormat:@"%d", n] : @"";
[[NSApp dockTile] setBadgeLabel:badgeStr];
NSString *badgeStr = (n > 0) ? [NSString stringWithFormat:@"%d", n] : @"";
[[NSApp dockTile] setBadgeLabel:badgeStr];
}

View file

@ -20,7 +20,7 @@
#
################################################################################
cmake_minimum_required(VERSION 3.1)
cmake_minimum_required(VERSION 3.5)
set(TARGET_NAME Linphone)