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

protoc.pri « qmake - github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 992b27f9813a31c5b6bfe71ddb3d9e4efed786ce (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
63
64
65
66
67
# Copyright 2005-2019 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>.

# This .pri files finds a suitable protoc binary on the system.
#
# It exposes the found protoc binary as the 'PROTOC' qmake variable.
# This variable contains the absolute path to a working protoc binary.
#
# Why do we need to do this?
#
# The protobuf compiler's binary name in MinGW packages for Linux
# cross-compiling is never 'protoc', but something like
# 'x86_64-w64-mingw32.static-protoc'.
#
# This file tries to use the right binary, by searching in $PATH
# using the 'which' tool.
#
# If no binary is found, an error is shown to the user.
#
# This script also supports setting a MUMBLE_PROTOC environment
# variable to specify an absolute path to a protoc binary to use.
# Setting this environment variable overrides any querying.

include(qt.pri)

PROTOC = $$(MUMBLE_PROTOC)

# If the MUMBLE_PROTOC environment variable isn't set
isEmpty(PROTOC) {
	# If we're on Qt 4 on win32, or we're building from Windows, use "protoc"
	equals(QMAKE_HOST.os, "Windows")|equals(QMAKE_VERSION_INT_MAJOR, 4):win32 {
		PROTOC=protoc
	} else {
		# Determine if the 'which' tool is available. We need it
		# to determine which PROTOC binary on the system to use.
		# If 'which' isn't available, error out.
		# Calling 'which which' is intentional.
		# If which is available, it will print the path to it.
		# If it isn't available, it will not print anything.
		WHICH=$$system(which which 2>/dev/null)
		isEmpty(WHICH) {
			message("The 'which' command is not available on the system. Unable to search for protoc installations. Assuming 'protoc'... If this is not correct, please point the MUMBLE_PROTOC environment variable at a working protoc binary.")
			PROTOC=protoc
		} else {
			TARGET_TRIPLE = $$system($${QMAKE_CC} -dumpmachine 2>/dev/null)
			!isEmpty(TARGET_TRIPLE) {
				isEmpty(PROTOC) {
					PROTOC=$$system(which $$TARGET_TRIPLE"-protoc" 2>/dev/null)
				}
				isEmpty(PROTOC) {
					PROTOC=$$system(which $$TARGET_TRIPLE".static-protoc" 2>/dev/null)
				}
				isEmpty(PROTOC) {
					PROTOC=$$system(which $$TARGET_TRIPLE".shared-protoc" 2>/dev/null)
				}
			}
			isEmpty(PROTOC) {
				PROTOC=$$system(which protoc 2>/dev/null)
			}
			isEmpty(PROTOC) {
				error("Unable to find system's protoc binary. Some scripts invoked during the Mumble build use the protobuf compiler. You can manually specify it via the MUMBLE_PROTOC environment variable.")
			}
		}
	}
}