From c9dfcb2b11899797f0f25530fc059b718bec3130 Mon Sep 17 00:00:00 2001 From: def Date: Thu, 30 Apr 2020 21:30:21 +0200 Subject: [PATCH] Fix Mac OS X notifications linking --- CMakeLists.txt | 2 +- src/osx/{notifications.m => notifications.mm} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/osx/{notifications.m => notifications.mm} (100%) diff --git a/CMakeLists.txt b/CMakeLists.txt index 44226399f..73912392c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -472,7 +472,7 @@ elseif(TARGET_OS STREQUAL "mac") find_library(OPENGL OpenGL) find_library(SECURITY Security) set(PLATFORM_CLIENT - src/osx/notifications.m + src/osx/notifications.mm src/osxlaunch/client.m ) set(PLATFORM_CLIENT_LIBS ${COCOA} ${OPENGL}) diff --git a/src/osx/notifications.m b/src/osx/notifications.mm similarity index 100% rename from src/osx/notifications.m rename to src/osx/notifications.mm