-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
885 lines (786 loc) · 32.3 KB
/
CMakeLists.txt
File metadata and controls
885 lines (786 loc) · 32.3 KB
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
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
# -*- mode: cmake -*-
# vi: set ft=cmake :
# The minimum required CMake version should match the minimum listed in
# doc/_pages/from_source.md, which is also the minimum installed by
# setup/install_prereqs across all platforms.
# When this changes, drake-external-examples/drake_cmake_external/CMakeLists.txt
# should be changed accordingly so that downstream users are synced with
# Drake itself.
cmake_minimum_required(VERSION 3.22)
project(drake
DESCRIPTION "Model-based design and verification for robotics"
LANGUAGES C CXX
)
# The primary build system for Drake is Bazel (https://bazel.build/). For CMake,
# our objective is to accept configuration options using their standard spelling
# (e.g., `-DCMAKE_BUILD_TYPE=Release`) and install Drake using those settings.
#
# We'll do that by converting the settings to generated Bazel inputs:
# - a generated `MODULE.bazel` that depends on the Drake module and customizes
# the toolchain selection.
# - a `.bazelrc` file that specifies configuration choices.
# and then running the `@drake//:install` program from that temporary workspace.
list(INSERT CMAKE_MODULE_PATH 0 "${PROJECT_SOURCE_DIR}/cmake/modules")
include(CTest)
configure_file(CTestCustom.cmake.in CTestCustom.cmake @ONLY)
if(ANDROID OR CYGWIN OR IOS OR NOT UNIX)
message(FATAL_ERROR
"Android, Cygwin, iOS, and non-Unix platforms are NOT supported"
)
endif()
set(BAZELRC_IMPORTS "tools/bazel.rc")
set(UNIX_DISTRIBUTION_CODENAME)
# The minimum Darwin version and codename should correspond to the minimum
# supported macOS version listed in doc/_pages/installation.md and
# doc/_pages/from_source.md.
# For Ubuntu, don't make as harsh a check for minimum supported version
# since Drake *can* compile on non-Ubuntu UNIX, even though it's not
# officially supported.
set(MINIMUM_DARWIN_VERSION 24)
set(MINIMUM_MACOS_CODENAME "Sequoia")
if(APPLE)
if(CMAKE_SYSTEM_VERSION VERSION_LESS ${MINIMUM_DARWIN_VERSION})
message(WARNING "Darwin ${CMAKE_SYSTEM_VERSION} is NOT supported. "
"Please use Darwin ${MINIMUM_DARWIN_VERSION}.x (macOS "
"${MINIMUM_MACOS_CODENAME}) or newer."
)
endif()
list(APPEND BAZELRC_IMPORTS "tools/macos.bazelrc")
execute_process(
COMMAND "/usr/bin/arch"
OUTPUT_STRIP_TRAILING_WHITESPACE
OUTPUT_VARIABLE MACOS_ARCH)
if(MACOS_ARCH STREQUAL "")
message(FATAL_ERROR "Could NOT query macOS arch")
endif()
list(APPEND BAZELRC_IMPORTS "tools/macos-arch-${MACOS_ARCH}.bazelrc")
else()
list(APPEND BAZELRC_IMPORTS "tools/ubuntu.bazelrc")
find_program(LSB_RELEASE_EXECUTABLE NAMES lsb_release)
mark_as_advanced(LSB_RELEASE_EXECUTABLE)
if(NOT LSB_RELEASE_EXECUTABLE)
message(WARNING "Could NOT find the lsb_release executable")
else()
execute_process(COMMAND "${LSB_RELEASE_EXECUTABLE}" --codename --short
RESULT_VARIABLE LSB_RELEASE_CODENAME_SHORT_RESULT_VARIABLE
OUTPUT_VARIABLE UNIX_DISTRIBUTION_CODENAME
OUTPUT_STRIP_TRAILING_WHITESPACE
)
if(NOT LSB_RELEASE_CODENAME_SHORT_RESULT_VARIABLE EQUAL 0)
message(WARNING "Could NOT run the lsb_release executable")
else()
set(MAYBE_RC "tools/ubuntu-${UNIX_DISTRIBUTION_CODENAME}.bazelrc")
if(NOT EXISTS "${PROJECT_SOURCE_DIR}/${MAYBE_RC}")
message(WARNING "Could not find config file ${MAYBE_RC}. "
"This may indicate that you're using an OS or OS version that "
"is not officially supported, so the build configuration cannot be "
"fine-tuned. See https://drake.mit.edu/from_source.html for details "
"on officially supported platforms when building from source.")
else()
list(APPEND BAZELRC_IMPORTS "${MAYBE_RC}")
endif()
endif()
endif()
endif()
# This version number should match bazel_compatibility in MODULE.bazel.
set(MINIMUM_BAZEL_VERSION 8.0.1)
find_package(Bazel ${MINIMUM_BAZEL_VERSION} MODULE)
if(NOT Bazel_FOUND)
set(Bazel_EXECUTABLE "${PROJECT_SOURCE_DIR}/third_party/com_github_bazelbuild_bazelisk/bazelisk.py")
message(STATUS "Using Bazelisk as Bazel_EXECUTABLE to fetch Bazel on demand")
endif()
get_filename_component(C_COMPILER_REALPATH "${CMAKE_C_COMPILER}" REALPATH)
get_filename_component(C_COMPILER_NAME "${C_COMPILER_REALPATH}" NAME)
get_filename_component(CXX_COMPILER_REALPATH "${CMAKE_CXX_COMPILER}" REALPATH)
get_filename_component(CXX_COMPILER_NAME "${CXX_COMPILER_REALPATH}" NAME)
if(C_COMPILER_NAME STREQUAL ccache OR CXX_COMPILER_NAME STREQUAL ccache)
message(FATAL_ERROR
"Compilation with ccache is NOT supported due to incompatibility with Bazel"
)
endif()
# Get the full C++ compiler major version for our cmake/bazel.rc.in.
string(REGEX MATCH "^([0-9]+)"
DRAKE_CC_TOOLCHAIN_COMPILER_MAJOR
"${CMAKE_CXX_COMPILER_VERSION}")
if(NOT DRAKE_CC_TOOLCHAIN_COMPILER_MAJOR)
set(DRAKE_CC_TOOLCHAIN_COMPILER_MAJOR "0")
endif()
# The minimum compiler versions should match those listed in both
# doc/_pages/from_source.md and tools/workspace/cc/repository.bzl.
set(MINIMUM_APPLE_CLANG_VERSION 16)
set(MINIMUM_CLANG_VERSION 15)
set(MINIMUM_GNU_VERSION 11)
if(CMAKE_C_COMPILER_ID STREQUAL AppleClang)
if(CMAKE_C_COMPILER_VERSION VERSION_LESS ${MINIMUM_APPLE_CLANG_VERSION})
message(WARNING
"Compilation with clang ${CMAKE_C_COMPILER_VERSION} is NOT supported"
)
endif()
elseif(CMAKE_C_COMPILER_ID STREQUAL Clang)
if(CMAKE_C_COMPILER_VERSION VERSION_LESS ${MINIMUM_CLANG_VERSION})
message(WARNING
"Compilation with clang ${CMAKE_C_COMPILER_VERSION} is NOT supported"
)
endif()
elseif(CMAKE_C_COMPILER_ID STREQUAL GNU)
if(CMAKE_C_COMPILER_VERSION VERSION_LESS ${MINIMUM_GNU_VERSION})
message(WARNING
"Compilation with gcc ${CMAKE_C_COMPILER_VERSION} is NOT supported"
)
endif()
else()
message(WARNING
"Compilation with ${CMAKE_C_COMPILER_ID} is NOT supported. Compilation of "
"project drake_install may fail."
)
endif()
if(CMAKE_CXX_COMPILER_ID STREQUAL AppleClang)
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS ${MINIMUM_APPLE_CLANG_VERSION})
message(WARNING
"Compilation with clang++ ${CMAKE_CXX_COMPILER_VERSION} is NOT supported"
)
endif()
elseif(CMAKE_CXX_COMPILER_ID STREQUAL Clang)
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS ${MINIMUM_CLANG_VERSION})
message(WARNING
"Compilation with clang++ ${CMAKE_CXX_COMPILER_VERSION} is NOT supported"
)
endif()
elseif(CMAKE_CXX_COMPILER_ID STREQUAL GNU)
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS ${MINIMUM_GNU_VERSION})
message(WARNING
"Compilation with g++ ${CMAKE_CXX_COMPILER_VERSION} is NOT supported"
)
endif()
else()
message(WARNING
"Compilation with ${CMAKE_CXX_COMPILER_ID} is NOT supported. Compilation "
"of project drake_install may fail."
)
endif()
# Determine the CMAKE_BUILD_TYPE. We'll store it as BUILD_TYPE_LOWER so that
# we can treat it as case-insensitive in our string comparisons.
get_property(IS_MULTI_CONFIG GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
if(IS_MULTI_CONFIG)
message(FATAL_ERROR "Drake does not support multi-config generators")
endif()
set(SUPPORTED_BUILD_TYPES Release RelWithDebInfo Debug MinSizeRel)
string(REPLACE ";" " " SUPPORTED_BUILD_TYPES_STRING
"${SUPPORTED_BUILD_TYPES}"
)
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY
STRINGS "${SUPPORTED_BUILD_TYPES}"
)
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE Release CACHE STRING
"Choose the type of build, options are: ${SUPPORTED_BUILD_TYPES_STRING}"
FORCE
)
endif()
string(TOLOWER "${CMAKE_BUILD_TYPE}" BUILD_TYPE_LOWER)
string(TOLOWER "${SUPPORTED_BUILD_TYPES}" SUPPORTED_BUILD_TYPES_LOWER)
if(NOT BUILD_TYPE_LOWER IN_LIST SUPPORTED_BUILD_TYPES_LOWER)
message(WARNING
"Configuration CMAKE_BUILD_TYPE='${CMAKE_BUILD_TYPE}' is NOT supported. "
"Defaulting to Release, options are: ${SUPPORTED_BUILD_TYPES_STRING}"
)
set(BUILD_TYPE_LOWER release)
set(CMAKE_BUILD_TYPE Release CACHE STRING
"Choose the type of build, options are: ${SUPPORTED_BUILD_TYPES_STRING}"
FORCE
)
endif()
# TODO(jwnimmer-tri) We don't currently pass along the user's selected C++
# standard nor CMAKE_CXX_FLAGS to Bazel, but we should.
set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_STANDARD 20)
# The supported Python major/minor versions should match those listed in
# doc/_pages/from_source.md and setup/python/pyproject.toml.
if(APPLE)
# The macOS python version should match what's listed in both the
# tools/workspace/python/repository.bzl and doc/_pages/installation.md.
set(SUPPORTED_PYTHON_VERSION 3.13)
else()
if(UNIX_DISTRIBUTION_CODENAME STREQUAL noble)
set(SUPPORTED_PYTHON_VERSION 3.12)
else() # UNIX_DISTRIBUTION_CODENAME := jammy
set(SUPPORTED_PYTHON_VERSION 3.10)
endif()
endif()
# Next we'll very carefully choose which Python interpreter to use.
#
# - If the user provided the legacy spelling -DPYTHON_EXECUTABLE, shift that
# into -DPython_EXECUTABLE instead and continue (with a warning).
#
# - If the user provided -DPython_EXECUTABLE, take it at face value (and
# therefore error out if they gave us a broken definition).
#
# - Otherwise, try to find SUPPORTED_PYTHON_VERSION and use it if found.
#
# - Otherwise, try to find any Python 3 interpreter at all.
#
# In all cases, we'll warn in case the found Python is not supported.
if(PYTHON_EXECUTABLE AND NOT Python_EXECUTABLE)
set(Python_EXECUTABLE "${PYTHON_EXECUTABLE}" CACHE FILEPATH
"Path to the python3 executable" FORCE
)
message(WARNING
"To select a Python interpreter, you should define Python_EXECUTABLE "
"not PYTHON_EXECUTABLE. The uppercase spelling is used for backwards "
"compatibility only.")
unset(PYTHON_EXECUTABLE CACHE)
endif()
if(Python_EXECUTABLE)
find_package(Python 3 EXACT MODULE REQUIRED
COMPONENTS Development Interpreter
)
else()
find_package(Python ${SUPPORTED_PYTHON_VERSION} EXACT MODULE
COMPONENTS Development Interpreter
)
if(NOT Python_FOUND)
find_package(Python 3 EXACT MODULE REQUIRED
COMPONENTS Development Interpreter
)
endif()
endif()
if(NOT Python_INTERPRETER_ID STREQUAL Python)
message(WARNING
"Python interpreter ${Python_INTERPRETER_ID} is NOT supported. Python "
"code in project drake_install may fail at runtime."
)
endif()
set(PYTHON_VERSION_MAJOR_MINOR
"${Python_VERSION_MAJOR}.${Python_VERSION_MINOR}"
)
if(NOT PYTHON_VERSION_MAJOR_MINOR VERSION_EQUAL SUPPORTED_PYTHON_VERSION)
message(WARNING
"The found Python version ${PYTHON_VERSION_MAJOR_MINOR} differs from "
"Drake's preferred version ${SUPPORTED_PYTHON_VERSION} on this platform. "
"You may experience compatibility problems that are outside the scope of "
"Drake's continuous integration test suites."
)
endif()
set(BAZEL_REPO_ENV)
if(NOT APPLE)
# Determine the real underlying compiler, so that compiler- and version-
# specific warning logic is enforced throughout the build (even for
# externals). Since rules_cc only identifies the compiler based on the
# filename (rather than actually running it, as CMake does), create a local
# symlink to the compiler with the expected name.
# TODO(tyler-yankee): Ideally, rules_cc would perform proper compiler
# introspection so that this workaround is not needed, but that doesn't seem
# to exist yet.
# Base case; use whatever we were given. (If the filenames already look like
# gcc or clang, or if we fail to parse, we'll fall back to this.)
set(DRAKE_C_COMPILER "${CMAKE_C_COMPILER}")
set(DRAKE_CXX_COMPILER "${CMAKE_CXX_COMPILER}")
cmake_path(GET CMAKE_C_COMPILER FILENAME C_COMPILER_BASENAME)
if (NOT C_COMPILER_BASENAME MATCHES "(gcc|clang)(-\\d+)?")
if(CMAKE_C_COMPILER_ID STREQUAL Clang)
set(DRAKE_C_COMPILER "${CMAKE_BINARY_DIR}/clang")
set(DRAKE_CXX_COMPILER "${CMAKE_BINARY_DIR}/clang++")
file(CREATE_LINK "${CMAKE_C_COMPILER}" "${DRAKE_C_COMPILER}" SYMBOLIC)
file(CREATE_LINK "${CMAKE_CXX_COMPILER}" "${DRAKE_CXX_COMPILER}" SYMBOLIC)
elseif(CMAKE_C_COMPILER_ID STREQUAL GNU)
set(DRAKE_C_COMPILER "${CMAKE_BINARY_DIR}/gcc")
set(DRAKE_CXX_COMPILER "${CMAKE_BINARY_DIR}/g++")
file(CREATE_LINK "${CMAKE_C_COMPILER}" "${DRAKE_C_COMPILER}" SYMBOLIC)
file(CREATE_LINK "${CMAKE_CXX_COMPILER}" "${DRAKE_CXX_COMPILER}" SYMBOLIC)
endif()
endif()
string(APPEND BAZEL_REPO_ENV
" --repo_env=CC=${DRAKE_C_COMPILER}"
" --repo_env=CXX=${DRAKE_CXX_COMPILER}"
)
endif()
get_filename_component(PROJECT_BINARY_DIR_REALPATH
"${PROJECT_BINARY_DIR}" REALPATH
)
get_filename_component(PROJECT_SOURCE_DIR_REALPATH
"${PROJECT_SOURCE_DIR}" REALPATH
)
# Check whether the PROJECT_BINARY_DIR is a subdirectory of the
# PROJECT_SOURCE_DIR.
string(FIND "${PROJECT_BINARY_DIR_REALPATH}/" "${PROJECT_SOURCE_DIR_REALPATH}/"
STRING_FIND_RESULT_VARIABLE
)
if(STRING_FIND_RESULT_VARIABLE EQUAL 0)
# The --output_base cannot be within the WORKSPACE (a subdirectory of
# PROJECT_SOURCE_DIR), so fallback to the using the same parent directory
# that Bazel uses by default for its --output_base.
if(APPLE)
set(BAZEL_OUTPUT_BASE "/var/tmp")
else()
set(BAZEL_OUTPUT_BASE "$ENV{HOME}/.cache/bazel")
endif()
else()
set(BAZEL_OUTPUT_BASE "${PROJECT_BINARY_DIR}")
endif()
# Compute the MD5 hash of the PROJECT_BINARY_DIR rather than the WORKSPACE
# (PROJECT_SOURCE_DIR) to avoid colliding with the directory that Bazel uses by
# default.
string(MD5 PROJECT_BINARY_DIR_MD5 "${PROJECT_BINARY_DIR_REALPATH}")
set(BAZEL_OUTPUT_BASE
"${BAZEL_OUTPUT_BASE}/_bazel_$ENV{USER}/${PROJECT_BINARY_DIR_MD5}"
)
# Symlinks the C++ interface include directories for TARGET as
# workspace/NAME/include, e.g.
# workspace/eigen/include -> .../build/install/include/eigen3
# If TARGET has multiple include directories, then symlink each file or
# directory within each include directory.
function(symlink_external_repository_includes NAME TARGET)
get_target_property(include_dirs ${TARGET} INTERFACE_INCLUDE_DIRECTORIES)
set(workspace ${CMAKE_CURRENT_BINARY_DIR}/external/workspace)
file(MAKE_DIRECTORY ${workspace}/${NAME})
list(LENGTH include_dirs n_include_dirs)
if (n_include_dirs GREATER 1)
file(MAKE_DIRECTORY ${workspace}/${NAME}/include)
foreach(dir IN LISTS include_dirs)
file(GLOB items RELATIVE ${dir} ${dir}/*)
foreach(item IN LISTS items)
file(CREATE_LINK ${dir}/${item}
${workspace}/${NAME}/include/${item} SYMBOLIC)
endforeach()
endforeach()
else()
file(CREATE_LINK ${include_dirs} ${workspace}/${NAME}/include SYMBOLIC)
endif()
endfunction()
# Symlinks the C++ libraries for TARGET as workspace/NAME/lib/*, e.g.
# workspace/fmt/lib/libfmt.so.6.1.2 -> .../build/install/lib/libfmt.so.6.1.2
# workspace/fmt/lib/libfmt.so.6 -> .../build/install/lib/libfmt.so.6.1.2
# If USE_SO_MINOR_VERSION is provided as argument, the last line above uses
# .so.x.y instead, e.g.
# workspace/fmt/lib/libfmt.so.6.1 -> ../build/install/lib/libfmt.so.6.1.2
# Uses the LOCATION_<CONFIG> target property to determine the location of the
# target file on disk to be symlinked, unless LIBRARIES is provided as
# argument, in which case they are used directly.
function(symlink_external_repository_libs NAME TARGET)
cmake_parse_arguments(ARG
"USE_SO_MINOR_VERSION"
"" "" ${ARGN}
)
function(_create_links lib_dir location)
get_filename_component(basename "${location}" NAME)
file(CREATE_LINK "${location}" "${lib_dir}/${basename}" SYMBOLIC)
# Link the SONAME spelling in case of shared libraries.
# If the basename does not match this pattern, this part is all a no-op.
if(ARG_USE_SO_MINOR_VERSION)
string(REGEX REPLACE "(\\.so\\.[0-9]+\\.[0-9]+)\\.[0-9]+$" "\\1"
other_basename "${basename}")
string(REGEX REPLACE "(\\.[0-9]+\\.[0-9]+)\\.[0-9]+\\.dylib$" "\\1.dylib"
other_basename "${other_basename}")
else()
string(REGEX REPLACE "(\\.so\\.[0-9]+)\\.[0-9]+\\.[0-9]+$" "\\1"
other_basename "${basename}")
string(REGEX REPLACE "(\\.[0-9]+)\\.[0-9]+\\.[0-9]+\\.dylib$" "\\1.dylib"
other_basename "${other_basename}")
endif()
file(CREATE_LINK "${location}" "${lib_dir}/${other_basename}" SYMBOLIC)
endfunction()
set(workspace "${CMAKE_CURRENT_BINARY_DIR}/external/workspace")
set(lib_dir "${workspace}/${NAME}/lib/")
file(MAKE_DIRECTORY "${lib_dir}")
get_target_property(type ${TARGET} TYPE)
if (type STREQUAL INTERFACE_LIBRARY)
get_target_property(libs ${TARGET} INTERFACE_LINK_LIBRARIES)
if(NOT libs)
message(FATAL_ERROR "Target ${TARGET} has no interface link libraries.")
endif()
foreach(lib IN LISTS libs)
_create_links("${lib_dir}" "${lib}")
endforeach()
else()
get_target_property(location ${TARGET} LOCATION_${CMAKE_BUILD_TYPE})
if(NOT location)
message(FATAL_ERROR "Target ${TARGET} has no location on disk.")
endif()
_create_links("${lib_dir}" "${location}")
endif()
endfunction()
macro(override_module NAME)
set(local_path "${CMAKE_CURRENT_BINARY_DIR}/external/workspace/${NAME}")
file(GENERATE OUTPUT "${local_path}/MODULE.bazel"
INPUT "${CMAKE_CURRENT_SOURCE_DIR}/cmake/external/workspace/${NAME}/MODULE.bazel.in")
file(GENERATE OUTPUT "${local_path}/BUILD.bazel"
INPUT "${CMAKE_CURRENT_SOURCE_DIR}/cmake/external/workspace/${NAME}/BUILD.bazel.in")
file(CREATE_LINK
"${PROJECT_SOURCE_DIR}/cmake/external/workspace/conversion.bzl"
"${local_path}/conversion.bzl"
SYMBOLIC)
string(APPEND BAZEL_REPO_ENV
" --override_module=${NAME}=${local_path}")
string(APPEND BAZEL_REPO_ENV
" --@drake//tools/workspace/${NAME}:with_user_${NAME}=True")
endmacro()
macro(override_repository NAME)
set(local_path "${CMAKE_CURRENT_BINARY_DIR}/external/workspace/${NAME}")
file(MAKE_DIRECTORY "${local_path}")
file(GENERATE OUTPUT "${local_path}/MODULE.bazel"
INPUT "${CMAKE_CURRENT_SOURCE_DIR}/cmake/external/workspace/${NAME}/MODULE.bazel.in")
file(GENERATE OUTPUT "${local_path}/BUILD.bazel"
INPUT "${CMAKE_CURRENT_SOURCE_DIR}/cmake/external/workspace/${NAME}/BUILD.bazel.in")
string(APPEND BAZEL_REPO_ENV
" --override_repository=drake++drake_dep_repositories+${NAME}=${local_path}")
string(APPEND BAZEL_REPO_ENV
" --@drake//tools/workspace/${NAME}:with_user_${NAME}=True")
endmacro()
if(APPLE AND DRAKE_CI_ENABLE_PACKAGING)
# When building a macOS *.tar.gz binary release, never use Homebrew for C++
# dependencies, because it offers absolutely no version stability.
set(DEFAULT_WITH_USER_LIBS OFF)
else()
set(DEFAULT_WITH_USER_LIBS ON)
endif()
option(WITH_USER_EIGEN "Use user-provided Eigen3" ${DEFAULT_WITH_USER_LIBS})
if(WITH_USER_EIGEN)
find_package(Eigen3 CONFIG REQUIRED)
symlink_external_repository_includes(eigen Eigen3::Eigen)
override_module(eigen)
endif()
option(WITH_USER_FMT "Use user-provided fmt" ${DEFAULT_WITH_USER_LIBS})
if(WITH_USER_FMT)
find_package(fmt CONFIG REQUIRED)
symlink_external_repository_includes(fmt fmt::fmt)
symlink_external_repository_libs(fmt fmt::fmt)
override_module(fmt)
endif()
option(WITH_USER_SPDLOG "Use user-provided spdlog" ${DEFAULT_WITH_USER_LIBS})
if(WITH_USER_SPDLOG)
if(NOT WITH_USER_FMT)
message(FATAL_ERROR
"User-provided spdlog (WITH_USER_SPDLOG) "
"requires user-provided fmt (WITH_USER_FMT).")
endif()
find_package(spdlog CONFIG REQUIRED)
symlink_external_repository_includes(spdlog spdlog::spdlog)
# Modern versions of spdlog (i.e. >= 1.11.0) specify a minor version in the
# SONAME spelling, while older versions only use the major version.
# We support that logic here to provide compatibility with both.
# See https://github.com/gabime/spdlog/releases/tag/v1.11.0 for details.
set(SPDLOG_USE_SO_MINOR_VERSION USE_SO_MINOR_VERSION)
if(${spdlog_VERSION_MAJOR} LESS 1 OR
(${spdlog_VERSION_MAJOR} EQUAL 1 AND ${spdlog_VERSION_MINOR} LESS 11))
set(SPDLOG_USE_SO_MINOR_VERSION)
endif()
symlink_external_repository_libs(spdlog spdlog::spdlog ${SPDLOG_USE_SO_MINOR_VERSION})
override_module(spdlog)
endif()
if(NOT APPLE)
option(WITH_USER_BLAS "Use user-provided BLAS" ${DEFAULT_WITH_USER_LIBS})
if(WITH_USER_BLAS)
find_package(BLAS REQUIRED)
override_repository(blas)
# The BLAS_LIBRARIES is a CMake list of libraries, where the actual blas
# is first followed by the transitive closure of libraries it uses. For our
# purposes, we only want to symlink the primary library. We'll rely on the
# NEEDED entries on the primary library to link its dependencies.
list(GET BLAS_LIBRARIES 0 FIRST_BLAS_LIBRARY)
file(CREATE_LINK
"${FIRST_BLAS_LIBRARY}"
"${CMAKE_CURRENT_BINARY_DIR}/external/workspace/blas/libblas.so"
SYMBOLIC)
endif()
option(WITH_USER_LAPACK "Use user-provided LAPACK" ${DEFAULT_WITH_USER_LIBS})
if(WITH_USER_LAPACK)
if(NOT WITH_USER_BLAS)
message(FATAL_ERROR
"User-provided lapack (WITH_USER_LAPACK) "
"requires user-provided blas (WITH_USER_BLAS).")
endif()
find_package(LAPACK REQUIRED)
override_repository(lapack)
# The LAPACK_LIBRARIES is a CMake list of libraries, where the actual lapack
# is first followed by the transitive closure of libraries it uses. For our
# purposes, we only want to symlink the primary library. We'll rely on the
# NEEDED entries on the primary library to link its dependencies.
list(GET LAPACK_LIBRARIES 0 FIRST_LAPACK_LIBRARY)
file(CREATE_LINK
"${FIRST_LAPACK_LIBRARY}"
"${CMAKE_CURRENT_BINARY_DIR}/external/workspace/lapack/liblapack.so"
SYMBOLIC)
endif()
endif()
find_package(PkgConfig 1)
if(PkgConfig_FOUND)
option(WITH_USER_GLIB "Use user-provided GLIB" ${DEFAULT_WITH_USER_LIBS})
if(WITH_USER_GLIB)
# CMake's pkg-config allows for system libraries and cflags, which contains
# -I/usr/include on Ubuntu, and we don't want to generate symlinks for every
# item contained there later. In this case, we can truncate because we know
# this flag comes from PCRE and that GLib doesn't have any public
# dependencies. Also, ensure we don't leak our PKG_CONFIG_ARGN modification
# for future use.
set(_pkg_config_argn "${PKG_CONFIG_ARGN}")
list(APPEND PKG_CONFIG_ARGN "--maximum-traverse-depth=2")
pkg_search_module(GLib REQUIRED IMPORTED_TARGET glib-2.0)
set(PKG_CONFIG_ARGN "${_pkg_config_argn}")
unset(_pkg_config_argn)
symlink_external_repository_includes(glib PkgConfig::GLib)
symlink_external_repository_libs(glib PkgConfig::GLib)
override_module(glib)
# glib's BCR module defines its library in a subdirectory BUILD file rather
# than the top-level file, so we must replicate that structure here.
file(WRITE
"${CMAKE_CURRENT_BINARY_DIR}/external/workspace/glib/glib/BUILD.bazel"
"alias(name = 'glib', actual = '//:glib', visibility = ['//visibility:public'])")
endif()
endif()
option(WITH_USER_ZLIB "Use user-provided ZLIB" ${DEFAULT_WITH_USER_LIBS})
if(APPLE)
# TODO(jwnimmer-tri) Unfortunately we can't use find_package() here because
# symlink_external_repository_libs() is not compatible with the `zlib.tbd`
# linker script that CMake finds on macOS. We should work on fixing that
# routine, and then remove this APPLE-specific logic. When doing so, don't
# forget to fix our doc/_pages/from_source.md documentation at the same time.
if(WITH_USER_ZLIB)
string(APPEND BAZEL_REPO_ENV
" --@drake//tools/flags:zlib_repo=hardcoded")
else()
string(APPEND BAZEL_REPO_ENV
" --@drake//tools/flags:zlib_repo=source")
endif()
else()
if(WITH_USER_ZLIB)
find_package(ZLIB REQUIRED)
symlink_external_repository_includes(zlib ZLIB::ZLIB)
symlink_external_repository_libs(zlib ZLIB::ZLIB)
override_module(zlib)
endif()
endif()
set(BAZEL_CONFIG)
# Defines options for opting out of certain features in Drake's build. Options
# default to ON, i.e., all features are enabled by default but the user can
# opt-out by specifying ${option_name}=OFF.
#
# This is currently used for the open-source solvers and render engines. The
# spelling of `option_name` should lowercase-match the spelling of the
# corresponding Bazel flag.
function(define_bool_option option_name display_name)
string(TOLOWER "${option_name}" option_bazel_flag)
option("${option_name}" "Build with support for ${display_name}" ON)
if(${option_name})
string(APPEND BAZEL_CONFIG
" --@drake//tools/flags:${option_bazel_flag}=True")
else()
string(APPEND BAZEL_CONFIG
" --@drake//tools/flags:${option_bazel_flag}=False")
endif()
set(BAZEL_CONFIG ${BAZEL_CONFIG} PARENT_SCOPE)
endfunction()
if(NOT APPLE)
define_bool_option("WITH_RENDER_GL" "RenderEngineGl")
endif()
define_bool_option("WITH_RENDER_VTK" "RenderEngineVtk")
define_bool_option("WITH_RENDER_GLTF_CLIENT" "RenderEngineGltfClient")
define_bool_option("WITH_CLARABEL" "Clarabel")
define_bool_option("WITH_CLP" "CLP")
define_bool_option("WITH_CSDP" "CSDP")
define_bool_option("WITH_IPOPT" "Ipopt")
define_bool_option("WITH_NLOPT" "NLopt")
define_bool_option("WITH_OSQP" "OSQP")
define_bool_option("WITH_SCS" "SCS")
option(WITH_GUROBI "Build with support for Gurobi" OFF)
if(WITH_GUROBI)
find_package(Gurobi 12.0 EXACT MODULE REQUIRED)
string(APPEND BAZEL_CONFIG " --config=gurobi")
if(NOT APPLE)
get_filename_component(GUROBI_HOME "${Gurobi_INCLUDE_DIRS}" DIRECTORY)
string(APPEND BAZEL_REPO_ENV " --repo_env=GUROBI_HOME=${GUROBI_HOME}")
endif()
endif()
option(WITH_MOSEK "Build with support for MOSEK" OFF)
if(WITH_MOSEK)
string(APPEND BAZEL_CONFIG " --config=mosek")
endif()
option(BUILD_SHARED_LIBS "Install libdrake as a shared library" ON)
if(BUILD_SHARED_LIBS)
string(APPEND BAZEL_CONFIG " --@drake//tools/flags:install_libdrake=shared")
else()
string(APPEND BAZEL_CONFIG " --@drake//tools/flags:install_libdrake=static")
endif()
option(WITH_LCM_RUNTIME
"Build with LCM runtime library support" ${BUILD_SHARED_LIBS}
)
if(WITH_LCM_RUNTIME)
string(APPEND BAZEL_CONFIG " --@drake//tools/flags:with_lcm_runtime=True")
else()
string(APPEND BAZEL_CONFIG " --@drake//tools/flags:with_lcm_runtime=False")
endif()
option(DRAKE_INSTALL_JAVA "Install Drake's Java tools (currently only Java lcmtypes)" ON)
if(DRAKE_INSTALL_JAVA)
string(APPEND BAZEL_CONFIG " --@drake//tools/flags:install_java=True")
else()
string(APPEND BAZEL_CONFIG " --@drake//tools/flags:install_java=False")
endif()
option(DRAKE_INSTALL_PYTHON
"Install Drake's Python tools (pydrake, pybind11 headers, tutorials, and Python lcmtypes)"
${BUILD_SHARED_LIBS}
)
if(DRAKE_INSTALL_PYTHON)
string(APPEND BAZEL_CONFIG " --@drake//tools/flags:install_python=True")
else()
string(APPEND BAZEL_CONFIG " --@drake//tools/flags:install_python=False")
endif()
if((NOT BUILD_SHARED_LIBS AND DRAKE_INSTALL_PYTHON) OR
(NOT BUILD_SHARED_LIBS AND WITH_LCM_RUNTIME))
message(FATAL_ERROR
"Building and installing a static libdrake is incompatible with "
"installing Python tools and LCM runtime library support. Set "
"DRAKE_INSTALL_PYTHON=OFF WITH_LCM_RUNTIME=OFF or use a shared libdrake "
"by setting BUILD_SHARED_LIBS=ON (the default)."
)
endif()
option(WITH_OPENMP "Build with support for OpenMP" OFF)
if(WITH_OPENMP)
string(APPEND BAZEL_CONFIG " --config=omp")
endif()
set(WITH_ROBOTLOCOMOTION_SNOPT OFF CACHE BOOL
"Build with support for SNOPT using the RobotLocomotion/snopt private GitHub repository"
)
set(WITH_SNOPT OFF CACHE BOOL
"Build with support for SNOPT using a SNOPT source archive at SNOPT_PATH"
)
if(WITH_ROBOTLOCOMOTION_SNOPT AND WITH_SNOPT)
message(FATAL_ERROR
"WITH_ROBOTLOCOMOTION_SNOPT and WITH_SNOPT options are mutually exclusive"
)
endif()
if(WITH_ROBOTLOCOMOTION_SNOPT OR WITH_SNOPT)
enable_language(Fortran)
if(CMAKE_Fortran_COMPILER_ID STREQUAL GNU)
if(CMAKE_Fortran_COMPILER_VERSION VERSION_LESS ${MINIMUM_GNU_VERSION})
message(FATAL_ERROR
"Compilation with gfortran ${CMAKE_Fortran_COMPILER_VERSION} is NOT "
"supported"
)
endif()
else()
message(WARNING
"Compilation with ${CMAKE_Fortran_COMPILER_ID} is NOT supported. "
"Compilation of project drake_install may fail."
)
endif()
string(APPEND BAZEL_CONFIG " --config=snopt")
if(WITH_ROBOTLOCOMOTION_SNOPT)
string(APPEND BAZEL_REPO_ENV " --repo_env=SNOPT_PATH=git")
else()
set(SNOPT_PATH SNOPT_PATH-NOTFOUND CACHE FILEPATH
"Path to SNOPT source archive"
)
if(NOT EXISTS "${SNOPT_PATH}")
message(FATAL_ERROR
"SNOPT source archive was NOT found at '${SNOPT_PATH}'"
)
endif()
mark_as_advanced(SNOPT_PATH)
string(APPEND BAZEL_REPO_ENV " --repo_env=SNOPT_PATH=${SNOPT_PATH}")
endif()
endif()
if(DRAKE_CI_ENABLE_PACKAGING)
string(APPEND BAZEL_CONFIG " --config=packaging")
endif()
if(BUILD_TYPE_LOWER STREQUAL debug)
string(APPEND BAZEL_CONFIG " --config=Debug")
elseif(BUILD_TYPE_LOWER STREQUAL minsizerel)
string(APPEND BAZEL_CONFIG " --config=MinSizeRel")
elseif(BUILD_TYPE_LOWER STREQUAL release)
string(APPEND BAZEL_CONFIG " --config=Release")
elseif(BUILD_TYPE_LOWER STREQUAL relwithdebinfo)
string(APPEND BAZEL_CONFIG " --config=RelWithDebInfo")
endif()
# N.B. If you are testing the CMake API and making changes to `installer.py`,
# you can change this target to something more lightweight, such as
# `//tools/install/dummy:install`.
set(BAZEL_INSTALL_TARGET "@drake//:install")
if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
set(CMAKE_INSTALL_PREFIX "${PROJECT_BINARY_DIR}/install" CACHE STRING
"Install path prefix, prepended onto install directories" FORCE
)
endif()
set(BAZEL_INSTALL_ARGS "\${CMAKE_INSTALL_PREFIX}")
if(APPLE)
set(INSTALL_NAME_TOOL "" CACHE FILEPATH
"Path to the install name tool program"
)
# Users should rarely need to modify this option.
mark_as_advanced(INSTALL_NAME_TOOL)
if(INSTALL_NAME_TOOL)
list(INSERT BAZEL_INSTALL_ARGS 0
"--install_name_tool" "${INSTALL_NAME_TOOL}"
)
endif()
endif()
set(INSTALL_STRIP_TOOL "" CACHE FILEPATH
"Path to the strip program"
)
# Users should rarely need to modify this option.
mark_as_advanced(INSTALL_STRIP_TOOL)
if(INSTALL_STRIP_TOOL)
list(INSERT BAZEL_INSTALL_ARGS 0 "--strip_tool" "${INSTALL_STRIP_TOOL}")
endif()
# If CMAKE_BUILD_TYPE is Debug or RelWithDebInfo, do NOT strip symbols during
# install.
if(BUILD_TYPE_LOWER MATCHES "^(debug|relwithdebinfo)$")
# SNOPT has restrictions for redistribution given that we are statically
# linking it in.
if(WITH_SNOPT OR WITH_ROBOTLOCOMOTION_SNOPT)
message(WARNING
"Install configurations Debug and RelWithDebInfo will STILL strip "
"symbols because support for SNOPT is enabled"
)
else()
list(INSERT BAZEL_INSTALL_ARGS 0 --no_strip)
endif()
endif()
set(BAZELRC_IMPORT)
foreach(import IN LISTS BAZELRC_IMPORTS)
string(APPEND BAZELRC_IMPORT "import ${PROJECT_SOURCE_DIR}/${import}\n")
endforeach()
# We need to run Bazel in a dedicated temporary directory. The particular
# name `drake_build_cwd` isn't important, it just needs to be unique. Note,
# however, that the macOS wheel builds also need to know this path, so if it
# ever changes, tools/wheel/macos/build-wheel.sh will also need to be updated.
configure_file(cmake/bazel.rc.in drake_build_cwd/.bazelrc @ONLY)
configure_file(cmake/MODULE.bazel.in drake_build_cwd/MODULE.bazel @ONLY)
configure_file(cmake/BUILD.bazel.in drake_build_cwd/BUILD.bazel @ONLY)
file(CREATE_LINK "${PROJECT_SOURCE_DIR}/.bazeliskrc" drake_build_cwd/.bazeliskrc SYMBOLIC)
file(CREATE_LINK "${PROJECT_SOURCE_DIR}/.bazelversion" drake_build_cwd/.bazelversion SYMBOLIC)
find_package(Git)
set(GIT_DIR "${PROJECT_SOURCE_DIR}/.git")
set(GENERATE_DRAKE_VERSION_ARGS)
if(DEFINED DRAKE_VERSION_OVERRIDE)
list(APPEND GENERATE_DRAKE_VERSION_ARGS
"-DDRAKE_VERSION_OVERRIDE=${DRAKE_VERSION_OVERRIDE}")
endif()
if(DEFINED DRAKE_GIT_SHA_OVERRIDE)
list(APPEND GENERATE_DRAKE_VERSION_ARGS
"-DDRAKE_GIT_SHA_OVERRIDE=${DRAKE_GIT_SHA_OVERRIDE}")
endif()
add_custom_target(drake_version ALL
COMMAND "${CMAKE_COMMAND}"
${GENERATE_DRAKE_VERSION_ARGS}
"-DGIT_DIR=${GIT_DIR}"
"-DGIT_EXECUTABLE=${GIT_EXECUTABLE}"
"-DINPUT_FILE=${PROJECT_SOURCE_DIR}/tools/install/libdrake/VERSION.TXT.in"
"-DOUTPUT_FILE=${PROJECT_BINARY_DIR}/VERSION.TXT"
-P "${PROJECT_SOURCE_DIR}/tools/install/libdrake/generate_version.cmake"
)
add_custom_target(drake_install ALL
COMMAND "${Bazel_EXECUTABLE}" build ${BAZEL_INSTALL_TARGET}
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/drake_build_cwd"
USES_TERMINAL
)
add_dependencies(drake_install drake_version)
install(CODE
"execute_process(
COMMAND
\"${Bazel_EXECUTABLE}\" run ${BAZEL_INSTALL_TARGET}
-- ${BAZEL_INSTALL_ARGS}
WORKING_DIRECTORY \"${CMAKE_CURRENT_BINARY_DIR}/drake_build_cwd\"
)"
ALL_COMPONENTS
)
install(FILES "${PROJECT_BINARY_DIR}/VERSION.TXT" DESTINATION share/doc/drake)