Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/mumble/CMakeLists.txt36
1 files changed, 23 insertions, 13 deletions
diff --git a/src/mumble/CMakeLists.txt b/src/mumble/CMakeLists.txt
index 18f861cfd..2186e0358 100644
--- a/src/mumble/CMakeLists.txt
+++ b/src/mumble/CMakeLists.txt
@@ -990,17 +990,27 @@ if(wasapi)
endif()
endif()
-if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.16.0" AND APPLE)
- # Prevent objective C files from being included in unity builds as that causes issues
- set_source_files_properties(
- "AppNap.mm"
- "GlobalShortcut_macx.mm"
- "Log_macx.mm"
- "os_macx.mm"
- "TextToSpeech_macx.mm"
- "Overlay_macx.mm"
- "CoreAudio.mm"
- PROPERTIES
- SKIP_UNITY_BUILD_INCLUSION TRUE
- )
+if(${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.16.0")
+ if (APPLE)
+ # Prevent objective C files from being included in unity builds as that causes issues
+ set_source_files_properties(
+ "AppNap.mm"
+ "GlobalShortcut_macx.mm"
+ "Log_macx.mm"
+ "os_macx.mm"
+ "TextToSpeech_macx.mm"
+ "Overlay_macx.mm"
+ "CoreAudio.mm"
+ PROPERTIES
+ SKIP_UNITY_BUILD_INCLUSION TRUE
+ )
+ elseif(UNIX)
+ # Exclude source files that include the X11 headers as these define
+ # an awful lot of macros that can conflict with other code
+ set_source_files_properties(
+ "GlobalShortcut_unix.cpp"
+ PROPERTIES
+ SKIP_UNITY_BUILD_INCLUSION TRUE
+ )
+ endif()
endif()