aboutsummaryrefslogtreecommitdiffstats
path: root/Mk/bsd.cmake.mk
blob: e68fe83a57503582b6bb57cb80cf36c428d76bf0 (plain) (blame)
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
#-*- mode: Makefile; tab-width: 4; -*-
# ex:ts=4
#
# USE_CMAKE         - If set, this port uses cmake.
#
# CMAKE_ENV         - Environment passed to cmake.
#                   Default: ${CONFIGURE_ENV}
# CMAKE_ARGS        - Arguments passed to cmake
#                   Default: see below
# CMAKE_USE_PTHREAD - Instruct cmake to use pthreads when
#                   compiling/linking
#                   Default: not set
# CMAKE_BUILD_TYPE  - Type of build (cmake predefined build types),
#                   affects on CFALGS and thus should not be set.
#                   Default: none (which respects CFLAGS)
# CMAKE_VERBOSE     - Verbose build
#                   Default: not set
# CMAKE_SOURCE_PATH - Path to sourcedir for cmake
#                   Default: .
# CMAKE_INSTALL_PREFIX  - prefix for cmake to use for installation.
#                   Default: ${PREFIX}
#
#
# $FreeBSD$

CMAKE_MAINTAINER=   kde@FreeBSD.org

#
# CMAKE_BIN is the location where the cmake port installs the cmake
# executable
#
# CMAKE_PORT is where the cmake port is located in the ports tree
#
CMAKE_BIN=      ${LOCALBASE}/bin/cmake
CMAKE_PORT=     ${PORTSDIR}/devel/cmake

#
# Make sure we depend on cmake
#
BUILD_DEPENDS+= ${CMAKE_BIN}:${CMAKE_PORT}

#
# Default environment and arguments to cmake
#
CMAKE_ENV?=     ${CONFIGURE_ENV}
CMAKE_ARGS+=    -DCMAKE_C_COMPILER:STRING="${CC}" \
                -DCMAKE_CXX_COMPILER:STRING="${CXX}" \
                -DCMAKE_C_FLAGS:STRING="${CFLAGS}" \
                -DCMAKE_CXX_FLAGS:STRING="${CXXFLAGS}" \
                -DCMAKE_INSTALL_PREFIX:PATH="${CMAKE_INSTALL_PREFIX}" \
                -DCMAKE_BUILD_TYPE:STRING="${CMAKE_BUILD_TYPE}" \
                -DTHREADS_HAVE_PTHREAD_ARG:BOOL=YES

#
# Default build type and sourcedir
#
CMAKE_SOURCE_PATH?= .
CMAKE_INSTALL_PREFIX?=  ${PREFIX}
CMAKE_BUILD_TYPE?=  #none

#
# Instruct cmake to compile/link with pthreads
#
.if defined(CMAKE_USE_PTHREAD)
CFLAGS+=        ${PTHREAD_CFLAGS}
CXXFLAGS+=      ${PTHREAD_CFLAGS}

CMAKE_ARGS+=    -DCMAKE_THREAD_LIBS:STRING="${PTHREAD_LIBS}" \
                -DCMAKE_USE_PTHREADS:BOOL=ON \
                -DCMAKE_EXE_LINKER_FLAGS:STRING="${PTHREAD_LIBS}"
.endif

#
# Strip binaries
#
.if !defined(WITH_DEBUG)
INSTALL_TARGET?=    install/strip
.endif

#
# Force makefile verbosity if needed
#
.if defined(CMAKE_VERBOSE) || defined(BATCH)
CMAKE_ARGS+=    -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON
.endif

#
# Redefine do-configure target
#
.if !target(do-configure)
do-configure:
    @cd ${CONFIGURE_WRKSRC}; ${SETENV} ${CMAKE_ENV} ${CMAKE_BIN} ${CMAKE_ARGS} ${CMAKE_SOURCE_PATH}
.endif