-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
222 lines (194 loc) · 8.18 KB
/
CMakeLists.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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
#___INFO__MARK_BEGIN_NEW__
###########################################################################
#
# Copyright 2023-2024 HPC-Gridware GmbH
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
###########################################################################
#___INFO__MARK_END_NEW__
# clusterscheduler project root
cmake_minimum_required(VERSION 3.0...3.27.0)
project(
clusterscheduler
VERSION 9.0.2
DESCRIPTION "Open Cluster Scheduler Workload Manager"
HOMEPAGE_URL "https://www.openclusterscheduler.org"
LANGUAGES C CXX)
message(STATUS "Building project ${PROJECT_NAME} version ${PROJECT_VERSION}")
set(CMAKE_C_STANDARD 99)
set(CMAKE_C_STANDARD_REQUIRED ON)
set(CMAKE_C_EXTENSIONS OFF)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF)
# specify -DCMAKE_INSTALL_PREFIX=<path> to change the installation directory
if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
message(STATUS "setting default installation directory to /opt/cs")
set(CMAKE_INSTALL_PREFIX "/opt/cs" CACHE STRING "installation directory" FORCE)
endif ()
# if build type has not been specified then do a Debug build by default
if (NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE
"Debug"
CACHE STRING "select build type between Debug and Release" FORCE)
endif ()
# 3RD_PARTY OPTIONS
option(WITH_OS_3RDPARTY "Use 3rdparty libraries provided by OS packages" OFF)
option(WITH_SPOOL_BERKELEYDB "Enable berkeleydb spooling" ON)
option(WITH_SPOOL_DYNAMIC "Enable dynamic spooling configuration" ON)
option(WITH_HWLOC "Enable building with hwloc library" ON)
option(WITH_JEMALLOC "Enable use of the jemalloc memory allocator" ON)
option(WITH_OPENSSL "Enable use of the openssl library for CSP mode" OFF)
option(WITH_MTMALLOC "Enable use of the mtmalloc memory allocator on Solaris" ON)
option(WITH_QMAKE "Enable build of qmake" ON)
option(WITH_JNI "Add JNI code for libraries like libdrmaa" ON)
option(WITH_GPERF "Enable profiling code with Google Performance Tools" OFF)
# private extensions
set(PROJECT_EXTENSIONS "None" CACHE STRING "directory of private extensions")
set(PROJECT_FEATURES "clusterscheduler" CACHE STRING "clusterscheduler or gcs-extensions")
# INSTALL OPTIONS
option(INSTALL_SGE_BIN "Install binaries" ON)
option(INSTALL_SGE_COMMON "Install common files" ON)
option(INSTALL_SGE_DOC "Build and install documentation" OFF)
option(INSTALL_SGE_TEST "Install test binaries" ON)
option(INSTALL_SGE_SRCDOC "Build and install source code documentation" OFF)
# BUILD OPTIONS
option(ENABLE_LTO "Enable to add Link Time Optimization in Release Build." ON)
option(ENABLE_SANITIZERS "Enable address, leak and undefined behaviour sanitizer" OFF)
set(PROJECT_3RDPARTY_HOME
"$ENV{HOME}/3rd_party"
CACHE STRING "installation directory for 3rdparty tools")
include(cmake/OsReleaseInfo.cmake)
include(cmake/ArchitectureSpecificSettings.cmake)
include(CTest)
architecture_specific_settings()
# set rpath in binaries and shared libs
set(CMAKE_INSTALL_RPATH "\$ORIGIN/../../lib/${SGE_ARCH}")
# 3rdparty packages @todo: better install them into
# <base_dir>/<pkg>/<version>/<arch>/<os>/<osversion>/<debug|release>
include(cmake/BuildThirdParty.cmake)
build_third_party("${CMAKE_BINARY_DIR}/3rd_party" ${PROJECT_3RDPARTY_DIR})
# @todo: we shouldn't need includes - daemons/common, required for err_trace.h
# in libs/sgeobj/sge_binding.h - daemons/execd, required for get_path.h in
# clients/common/show_job.c - daemons/qmaster, required for sge_sched_thread.h
# in libs/sched/sge_urgency.h
if (PROJECT_FEATURES MATCHES "gcs-extensions")
set(SGE_INCLUDES
"../../../../${PROJECT_FEATURES}/source/common"
"../../../../${PROJECT_FEATURES}/source/clients/common"
"../../../../${PROJECT_FEATURES}/source/daemons/common"
"../../../../${PROJECT_FEATURES}/source/daemons/execd"
"../../../../${PROJECT_FEATURES}/source/daemons/qmaster"
"../../../../${PROJECT_FEATURES}/source/libs"
${PROJECT_SOURCE_DIR}/source/common
${PROJECT_SOURCE_DIR}/source/clients/common
${PROJECT_SOURCE_DIR}/source/daemons/common
${PROJECT_SOURCE_DIR}/source/daemons/execd
${PROJECT_SOURCE_DIR}/source/daemons/qmaster
${PROJECT_SOURCE_DIR}/source/libs
${TIRPC_INCLUDES}
${PROJECT_3RDPARTY_DIR}/include
${CPM_PACKAGE_rapidjson_SOURCE_DIR}/include)
add_compile_definitions(ADD_GRIDWARE_COPYRIGHT)
else()
set(SGE_INCLUDES
${PROJECT_SOURCE_DIR}/source/common
${PROJECT_SOURCE_DIR}/source/clients/common
${PROJECT_SOURCE_DIR}/source/daemons/common
${PROJECT_SOURCE_DIR}/source/daemons/execd
${PROJECT_SOURCE_DIR}/source/daemons/qmaster
${PROJECT_SOURCE_DIR}/source/libs
${TIRPC_INCLUDES}
${PROJECT_3RDPARTY_DIR}/include
${CPM_PACKAGE_rapidjson_SOURCE_DIR}/include)
endif()
if (WITH_JEMALLOC)
set(SGE_JEMALLOC_LIB "jemalloc")
else ()
set(SGE_JEMALLOC_LIB "")
endif ()
#if (SGE_ARCH MATCHES "darwin-arm64" OR SGE_ARCH MATCHES "fbsd-amd64")
if (NOT WITH_SPOOL_BERKELEYDB AND NOT WITH_SPOOL_DYNAMIC)
set(SPOOLING_LIBS spoolloader spoolc_static spool)
else ()
set(SPOOLING_LIBS spoolloader spoold spool)
endif ()
if (WITH_GPERF)
# gperftools can be installed on centos with: yum install google-perftools-devel
set (Gperftools_DIR "${CMAKE_CURRENT_LIST_DIR}/cmake/")
set (Gperftools_ROOT_DIR "/usr")
find_package(Gperftools)
if (Gperftools_FOUND)
message("Found and enabled build with gperftools")
add_compile_definitions(WITH_GPERF)
else()
# ignore if gperftools are not found so that build with TS does not fail if a build host is missing gperftools
set(GPERFTOOLS_PROFILER "") # set to empty string to avoid linking against gperftools
message("Cannot find gperftools although WITH_GPERF is set")
endif()
endif()
if (WITH_HWLOC)
if (SGE_ARCH MATCHES "darwin-arm64")
set(SGE_TOPO_LIB hwloc CoreFoundation Core)
set(SGE_TOPO_LIB_PATH "")
elseif (SGE_ARCH MATCHES "fbsd-amd64")
set(SGE_TOPO_LIB hwloc udev)
set(SGE_TOPO_LIB_PATH /usr/local/lib)
elseif (SGE_ARCH MATCHES "sol-amd64")
set(SGE_TOPO_LIB hwloc picl kstat lgrp pciaccess)
else ()
set(SGE_TOPO_LIB hwloc udev)
set(SGE_TOPO_LIB_PATH "")
endif ()
if (SGE_TOPO_LIB_PATH)
link_directories(/usr/local/lib)
endif ()
add_compile_definitions(OGE_HWLOC)
else ()
set(SGE_TOPO_LIB "")
endif ()
if (WITH_JNI)
if (DEFINED ENV{JAVA_HOME})
if (EXISTS "$ENV{JAVA_HOME}/include/jni.h")
message(STATUS "found $ENV{JAVA_HOME}/include/jni.h, can build JNI part of libdrmaa")
else()
message(FATAL_ERROR "JAVA_HOME is set ($ENV{JAVA_HOME}), but JAVA_HOME/include/jni.h does not exist")
set (WITH_JNI OFF)
endif()
else()
message(FATAL_ERROR "JAVA_HOME not set in environment, cannot build JNI code for libdrmaa")
set(WITH_JNI OFF)
endif()
endif()
if (SGE_ARCH MATCHES "fbsd-amd64")
set(SGE_LIBS_SHARED pthread ${TIRPC_LIB} kvm ${CMAKE_DL_LIBS} m)
else ()
set(SGE_LIBS_SHARED pthread ${TIRPC_LIB} ${CMAKE_DL_LIBS} m)
endif ()
set(SGE_LIBS ${SGE_JEMALLOC_LIB} ${SGE_LIBS_SHARED})
if (INSTALL_SGE_DOC)
include(cmake/BuildMarkdownMan.cmake)
include(cmake/BuildMarkdownManual.cmake)
add_subdirectory(doc)
endif ()
if (INSTALL_SGE_BIN OR INSTALL_SGE_COMMON OR INSTALL_SGE_TEST)
add_subdirectory(source)
add_subdirectory(test)
endif ()
if (NOT PROJECT_EXTENSIONS STREQUAL "None")
add_subdirectory(${PROJECT_EXTENSIONS} "gcs-extensions")
endif ()
# @todo: instead of library "dl" use ${CMAKE_DL_LIBS}? @todo: add virtual
# targets - for build: similar to --only-core - for install: binaries, common,
# tests, ...