-
Notifications
You must be signed in to change notification settings - Fork 1
/
cmake.mk
118 lines (103 loc) · 4.52 KB
/
cmake.mk
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
#
# CDDL HEADER START
#
# The contents of this file are subject to the terms of the
# Common Development and Distribution License (the "License").
# You may not use this file except in compliance with the License.
#
# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
# or http://www.opensolaris.org/os/licensing.
# See the License for the specific language governing permissions
# and limitations under the License.
#
# When distributing Covered Code, include this CDDL HEADER in each
# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
# If applicable, add the following below this CDDL HEADER, with the
# fields enclosed by brackets "[]" replaced with your own identifying
# information: Portions Copyright [yyyy] [name of copyright owner]
#
# CDDL HEADER END
#
#
# Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
#
#
# This file sets up the default options and base requirements for GNOME
# components.
#
# Most cmake-based components require intltools.
include $(WS_MAKE_RULES)/intltool.mk
# cmake components don't generally use autoconf.
include $(WS_MAKE_RULES)/justmake.mk
# Ensure correct version of libraries are linked to.
LDFLAGS += $(CC_BITS)
# This component uses cmake to generate Makefiles and so has no configure
CMAKE = $(shell which cmake)
CMAKE_BUILD_TYPE ?= RelWithDebInfo
# Layout configuration.
CMAKE_PREFIX ?= $(USRDIR)
CMAKE_OPTIONS += -DCMAKE_CXX_COMPILER="$(CXX)"
CMAKE_OPTIONS += -DCMAKE_CXX_FLAGS="$(CXXFLAGS)"
CMAKE_OPTIONS += -DCMAKE_C_COMPILER="$(CC)"
CMAKE_OPTIONS += -DCMAKE_C_FLAGS="$(CFLAGS)"
CMAKE_OPTIONS += -DCMAKE_EXE_LINKER_FLAGS="$(LDFLAGS)"
CMAKE_OPTIONS += -DCMAKE_AR="/usr/bin/ar"
# Must start install paths with a leading '/' or files will be installed into
# wrong location!
ifeq ($(strip $(PREFERRED_BITS)),64)
CMAKE_BINDIR.32 ?= $(CMAKE_PREFIX)/bin/$(MACH32)
CMAKE_SBINDIR.32 ?= $(CMAKE_PREFIX)/sbin/$(MACH32)
CMAKE_EXECDIR.32 ?= $(CMAKE_PREFIX)/lib/$(MACH32)
CMAKE_BINDIR.64 ?= $(CMAKE_PREFIX)/bin
CMAKE_SBINDIR.64 ?= $(CMAKE_PREFIX)/sbin
CMAKE_EXECDIR.64 ?= $(CMAKE_PREFIX)/lib
else
CMAKE_BINDIR.32 ?= $(CMAKE_PREFIX)/bin
CMAKE_SBINDIR.32 ?= $(CMAKE_PREFIX)/sbin
CMAKE_EXECDIR.32 ?= $(CMAKE_PREFIX)/lib
CMAKE_BINDIR.64 ?= $(CMAKE_PREFIX)/bin/$(MACH64)
CMAKE_SBINDIR.64 ?= $(CMAKE_PREFIX)/sbin/$(MACH64)
CMAKE_EXECDIR.64 ?= $(CMAKE_PREFIX)/lib/$(MACH64)
endif
CMAKE_OPTIONS += -DCMAKE_MAKE_PROGRAM=$(GMAKE)
# Which variables to set to control installation location has changed over time
# for CMake, so cover all of the common ones.
CMAKE_OPTIONS += -DCMAKE_INSTALL_PREFIX="$(CMAKE_PREFIX)"
CMAKE_OPTIONS += -DCMAKE_MODULE_LINKER_FLAGS="$(LDFLAGS)"
CMAKE_OPTIONS += -DCMAKE_SHARED_LINKER_FLAGS="$(LDFLAGS)"
CMAKE_OPTIONS += -DGETTEXT_MSGFMT_EXECUTABLE="$(GNUBIN)/msgfmt"
CMAKE_OPTIONS += -DBIN_INSTALL_DIR="$(CMAKE_BINDIR.$(BITS))"
CMAKE_OPTIONS += -DEXEC_INSTALL_DIR="$(CMAKE_EXECDIR.$(BITS))"
CMAKE_OPTIONS += -DLIBEXEC_INSTALL_DIR="$(CMAKE_EXECDIR.$(BITS))"
CMAKE_OPTIONS += -DCMAKE_INSTALL_BINDIR="$(CMAKE_BINDIR.$(BITS))"
CMAKE_OPTIONS += -DCMAKE_INSTALL_LIBEXECDIR="$(CMAKE_EXECDIR.$(BITS))"
# Some components use LIB_INSTALL_DIR, as-is, others forcibly ignore it and set
# based on CMAKE_INSTALL_PREFIX. Those usually instead offer a LIB_SUFFIX
# variable that we can generally use to accomplish the same result. Setting
# them both shouldn't harm anything.
CMAKE_OPTIONS += -DLIB_INSTALL_DIR="$(USRLIB)"
CMAKE_OPTIONS += -DCMAKE_INSTALL_LIBDIR="$(USRLIB)"
CMAKE_OPTIONS.64 += -DLIB_SUFFIX="/$(MACH64)"
# Required to ensure expected defines are set; also, ensures project's
# optimisation level set appropriately.
CMAKE_OPTIONS += -DCMAKE_BUILD_TYPE=$(CMAKE_BUILD_TYPE)
CMAKE_OPTIONS += $(CMAKE_OPTIONS.$(BITS))
# Ensure cmake finds the matching 32/64-bit version of dependencies.
COMPONENT_BUILD_ENV += PKG_CONFIG_PATH="$(PKG_CONFIG_PATH)"
COMPONENT_PRE_BUILD_ACTION += cd $(@D);
COMPONENT_PRE_BUILD_ACTION += echo Running cmake with $(CMAKE_OPTIONS);
COMPONENT_PRE_BUILD_ACTION += /usr/bin/env - $(COMPONENT_BUILD_ENV) \
$(CMAKE) $(CMAKE_OPTIONS) \
$(COMPONENT_DIR)/$(COMPONENT_SRC);
REQUIRED_PACKAGES += developer/build/cmake
REQUIRED_PACKAGES += developer/build/pkg-config
REQUIRED_PACKAGES += developer/gnu-binutils
REQUIRED_PACKAGES += developer/intltool
REQUIRED_PACKAGES += library/gnome/gnome-common
REQUIRED_PACKAGES += system/library
REQUIRED_PACKAGES += system/linker
# Most cmake-based components expect GNU versions of these.
REQUIRED_PACKAGES += text/gawk
REQUIRED_PACKAGES += text/gnu-gettext
REQUIRED_PACKAGES += text/gnu-grep
REQUIRED_PACKAGES += text/gnu-sed