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

CMakeLists.txt « plugins - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 46609e18a065398eed7dc1db67904c639805f74c (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Copyright 2019-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>.

option(retracted-plugins "Build redacted (outdated) plugins as well" OFF)

if(retracted-plugins)
	message(STATUS "Including retracted plugins")
endif()

set(CMAKE_INCLUDE_CURRENT_DIR ON)

if(NOT WIN32 AND NOT (${CMAKE_SYSTEM_NAME} STREQUAL "Linux"))
	add_subdirectory(link)

	# Shared library on UNIX (e.g. ".so")
	set_target_properties(link PROPERTIES LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/plugins")

	return()
endif()

file(GLOB ITEMS RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} "${CMAKE_CURRENT_SOURCE_DIR}/*")

foreach(ITEM ${ITEMS})
	if(IS_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}/${ITEM}")
		set(PLUGIN_RETRACTED OFF)

		# If the plugin is retracted the corresponding CMakeLists.txt is supposed to set the
		# PLUGIN_RETRACTED variable in the parent scope so that we can access it here
		add_subdirectory(${ITEM})

		if(PLUGIN_RETRACTED AND NOT retracted-plugins)
			# The included subdir didn't actually add a target since the associated plugin is retracted
			# and therefore it should not be built.
			continue()
		endif()

		target_include_directories(${ITEM} PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})

		if(WIN32)
			target_compile_definitions(${ITEM} PRIVATE "OS_WINDOWS")
			target_link_libraries(${ITEM} user32.lib)

			# Shared library on Windows (e.g. ".dll")
			set_target_properties(${ITEM} PROPERTIES RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/plugins")
			install(TARGETS ${ITEM} RUNTIME DESTINATION "${MUMBLE_INSTALL_PLUGINDIR}" COMPONENT mumble_client)
		else()
			if(${CMAKE_SYSTEM_NAME} STREQUAL "Linux")
				target_compile_definitions(${ITEM} PRIVATE "OS_LINUX")
			endif()

			# Shared library on UNIX (e.g. ".so")
			set_target_properties(${ITEM} PROPERTIES LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/plugins")
			install(TARGETS ${ITEM} LIBRARY DESTINATION "${MUMBLE_INSTALL_PLUGINDIR}" COMPONENT mumble_client)
		endif()

		if(packaging)
			add_dependencies(mumble ${ITEM})
		endif()
	endif()
endforeach()