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

CMakeLists.txt « osax « macx - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f73dfe2d8eed19c2ee6e19d90d6df327b40904e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Copyright 2020 The Mumble Developers. All rights reserved.
# Use of this source code is governed by a BSD-style license
# that can be found in the LICENSE file at the root of the
# Mumble source tree or at <https://www.mumble.info/LICENSE>.

# Mumble Overlay scripting addition
# (for injection into running processes)

add_library(MumbleOverlay MODULE
	"osax.m"
	"MumbleOverlay.sdef"
)

configure_file("${CMAKE_CURRENT_SOURCE_DIR}/osax.plist.in" "${CMAKE_CURRENT_BINARY_DIR}/osax.plist")

set_target_properties(MumbleOverlay
	PROPERTIES
		BUNDLE TRUE
		BUNDLE_EXTENSION "osax"
		RESOURCE "MumbleOverlay.sdef"
		LIBRARY_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}
		MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_BINARY_DIR}/osax.plist"
)

find_library(LIB_COCOA "Cocoa")
find_library(LIB_FOUNDATION "Foundation")

target_link_libraries(MumbleOverlay
	PRIVATE
		${LIB_COCOA}
		${LIB_FOUNDATION}
)