forked from rstudio/rstudio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeGlobals.txt
158 lines (139 loc) · 5.07 KB
/
CMakeGlobals.txt
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
#
# CMakeGlobals.txt
#
# Copyright (C) 2009-12 by RStudio, Inc.
#
# Unless you have received this program directly from RStudio pursuant
# to the terms of a commercial license agreement with RStudio, then
# this program is licensed to you under the terms of version 3 of the
# GNU Affero General Public License. This program is distributed WITHOUT
# ANY EXPRESS OR IMPLIED WARRANTY, INCLUDING THOSE OF NON-INFRINGEMENT,
# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Please refer to the
# AGPL (http://www.gnu.org/licenses/agpl-3.0.txt) for more details.
#
#
# version info
if ("$ENV{RSTUDIO_VERSION_MAJOR}" STREQUAL "")
set(CPACK_PACKAGE_VERSION_MAJOR "99")
set(RSTUDIO_UNVERSIONED_BUILD TRUE)
else()
set(CPACK_PACKAGE_VERSION_MAJOR $ENV{RSTUDIO_VERSION_MAJOR})
endif()
if ("$ENV{RSTUDIO_VERSION_MINOR}" STREQUAL "")
set(CPACK_PACKAGE_VERSION_MINOR "9")
else()
set(CPACK_PACKAGE_VERSION_MINOR $ENV{RSTUDIO_VERSION_MINOR})
endif()
if ("$ENV{RSTUDIO_VERSION_PATCH}" STREQUAL "")
set(CPACK_PACKAGE_VERSION_PATCH "9")
else()
set(CPACK_PACKAGE_VERSION_PATCH $ENV{RSTUDIO_VERSION_PATCH})
endif()
set(CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
# default to debug builds
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Debug")
endif()
# enable testing on debug builds
if (${CMAKE_BUILD_TYPE} STREQUAL "Debug")
set(RSTUDIO_UNIT_TESTS_ENABLED true)
add_definitions(-DRSTUDIO_UNIT_TESTS_ENABLED)
endif()
# platform specific default for targets
if(NOT RSTUDIO_TARGET)
set(RSTUDIO_TARGET "Development")
set(RSTUDIO_DEVELOPMENT TRUE)
endif()
# set desktop and server build flags
if( NOT WIN32 AND ( (${RSTUDIO_TARGET} STREQUAL "Development") OR
(${RSTUDIO_TARGET} STREQUAL "Server")) )
set(RSTUDIO_SERVER TRUE)
endif()
if( ${RSTUDIO_TARGET} STREQUAL "Development" OR ${RSTUDIO_TARGET} STREQUAL "Desktop" )
set(RSTUDIO_DESKTOP TRUE)
endif()
# set session64 if specified
if (${RSTUDIO_TARGET} STREQUAL "SessionWin64")
set(RSTUDIO_SESSION_WIN64 TRUE)
endif()
# record git revision hash (cache it since we don't use this in development
# mode and we don't want it to force rebuilds there)
if(NOT RSTUDIO_SESSION_WIN64 AND NOT RSTUDIO_GIT_REVISION_HASH)
exec_program(git ARGS rev-parse HEAD
OUTPUT_VARIABLE RSTUDIO_GIT_REVISION_HASH)
SET(RSTUDIO_GIT_REVISION_HASH "${RSTUDIO_GIT_REVISION_HASH}" CACHE STRING "Git Revision Hash")
endif()
# required R version
set(RSTUDIO_R_MAJOR_VERSION_REQUIRED 2)
set(RSTUDIO_R_MINOR_VERSION_REQUIRED 11)
set(RSTUDIO_R_PATCH_VERSION_REQUIRED 1)
# allow opting out of version checking (for building on older distros)
if(NOT DEFINED RSTUDIO_VERIFY_R_VERSION)
if(RSTUDIO_PACKAGE_BUILD)
set(RSTUDIO_VERIFY_R_VERSION FALSE)
else()
set(RSTUDIO_VERIFY_R_VERSION TRUE)
endif()
endif()
# install freedesktop integration files if we are installing into /usr
if(NOT DEFINED RSTUDIO_INSTALL_FREEDESKTOP)
if(${CMAKE_INSTALL_PREFIX} MATCHES "/usr/.*")
set(RSTUDIO_INSTALL_WITH_PRIV TRUE)
else()
set(RSTUDIO_INSTALL_WITH_PRIV FALSE)
endif()
if(RSTUDIO_INSTALL_WITH_PRIV AND UNIX AND NOT APPLE)
set(RSTUDIO_INSTALL_FREEDESKTOP TRUE)
else()
set(RSTUDIO_INSTALL_FREEDESKTOP FALSE)
endif()
endif()
# cmake modules (compute path relative to this file)
get_filename_component(ROOT_SRC_DIR ${CMAKE_CURRENT_LIST_FILE} PATH)
set(CMAKE_MODULE_PATH "${ROOT_SRC_DIR}/cmake/modules/")
# dependencies
set(RSTUDIO_DEPENDENCIES_DIR "${ROOT_SRC_DIR}/dependencies")
if(WIN32)
set(RSTUDIO_WINDOWS_DEPENDENCIES_DIR "${RSTUDIO_DEPENDENCIES_DIR}/windows")
endif()
# special install directories for apple desktop
if (APPLE AND RSTUDIO_DESKTOP)
set(RSTUDIO_INSTALL_BIN RStudio.app/Contents/MacOS)
set(RSTUDIO_INSTALL_SUPPORTING RStudio.app/Contents/Resources)
else()
if (RSTUDIO_SESSION_WIN64)
set(RSTUDIO_INSTALL_BIN x64)
else()
set(RSTUDIO_INSTALL_BIN bin)
endif()
set(RSTUDIO_INSTALL_SUPPORTING .)
endif()
# if the install prefix is /usr/local then tweak as appropriate
if(UNIX)
if(${CMAKE_INSTALL_PREFIX} STREQUAL "/usr/local")
if(APPLE AND RSTUDIO_DESKTOP)
set(CMAKE_INSTALL_PREFIX "/Applications")
else()
if(RSTUDIO_DESKTOP)
set(CMAKE_INSTALL_PREFIX "/usr/local/lib/rstudio")
else()
set(CMAKE_INSTALL_PREFIX "/usr/local/lib/rstudio-server")
endif()
endif()
endif()
endif()
# detect lsb release
if (UNIX AND NOT APPLE)
if(NOT RSTUDIO_LSB_RELEASE)
execute_process(COMMAND /usr/bin/lsb_release "--id" "--short"
OUTPUT_VARIABLE RSTUDIO_LSB_RELEASE)
if (RSTUDIO_LSB_RELEASE)
string(STRIP ${RSTUDIO_LSB_RELEASE} RSTUDIO_LSB_RELEASE)
string(TOLOWER ${RSTUDIO_LSB_RELEASE} RSTUDIO_LSB_RELEASE)
set(RSTUDIO_LSB_RELEASE ${RSTUDIO_LSB_RELEASE} CACHE STRING "LSB release")
message(STATUS "LSB release: ${RSTUDIO_LSB_RELEASE}")
endif()
endif()
endif()
# make sure the CMAKE_INSTALL_PREFIX uses a cmake style path
file(TO_CMAKE_PATH "${CMAKE_INSTALL_PREFIX}" CMAKE_INSTALL_PREFIX)