mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-17 03:18:07 +00:00
MacOS fixes :
fix cmake minimum version for compilation crash notification in task bar
This commit is contained in:
parent
99dd528e55
commit
443bcbf6c6
2 changed files with 3 additions and 3 deletions
|
|
@ -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];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
#
|
||||
################################################################################
|
||||
|
||||
cmake_minimum_required(VERSION 3.1)
|
||||
cmake_minimum_required(VERSION 3.5)
|
||||
|
||||
set(TARGET_NAME Linphone)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue