@@ -69,14 +69,17 @@ set(DART_PKG_EXTERNAL_DEPS "assimp, ccd, eigen3, fcl, octomap")
6969#===============================================================================
7070# Build options
7171#===============================================================================
72- dart_option(DART_VERBOSE "Whether print detailed information in CMake process" OFF )
7372if (MSVC )
7473 set (DART_RUNTIME_LIBRARY "/MD" CACHE STRING "BaseName chosen by the user at CMake configure time" )
7574 set_property (CACHE DART_RUNTIME_LIBRARY PROPERTY STRINGS /MD /MT)
7675 dart_option(DART_MSVC_DEFAULT_OPTIONS "Build DART with default Visual Studio options" OFF )
7776else ()
7877 dart_option(BUILD_SHARED_LIBS "Build shared libraries" ON )
7978endif ()
79+ dart_option(DART_BUILD_DARTPY "Build dartpy" OFF )
80+ dart_option(DART_BUILD_GUI_OSG "Build osgDart library" ON )
81+ dart_option(DART_BUILD_PROFILE "Build DART with profiling options" OFF )
82+ dart_option(DART_CODECOV "Turn on codecov support" OFF )
8083# Warning: DART_ENABLE_SIMD should be ON only when you build DART and the DART
8184# dependent projects on the same machine. If this option is on, then compile
8285# option `-march=native` is added to the target `dart` that enables all
@@ -86,10 +89,6 @@ endif()
8689# errors.
8790dart_option(DART_ENABLE_SIMD
8891 "Build DART with all SIMD instructions on the current local machine" OFF )
89- dart_option(DART_BUILD_GUI_OSG "Build osgDart library" ON )
90- dart_option(DART_BUILD_DARTPY "Build dartpy" OFF )
91- dart_option(DART_BUILD_PROFILE "Build DART with profiling options" OFF )
92- dart_option(DART_CODECOV "Turn on codecov support" OFF )
9392dart_option(DART_FAST_DEBUG "Add -O1 option for DEBUG mode build" OFF )
9493# GCC and Clang add ANSI-formatted colors when they detect the output medium is a
9594# terminal. However, this doesn't work in some cases such as when the makefile is
@@ -102,6 +101,8 @@ dart_option(DART_USE_SYSTEM_IMGUI "Use system ImGui" OFF)
102101dart_option(DART_USE_SYSTEM_GOOGLEBENCHMARK "Use system GoogleBenchmark" OFF )
103102dart_option(DART_USE_SYSTEM_GOOGLETEST "Use system GoogleTest" OFF )
104103dart_option(DART_USE_SYSTEM_PYBIND11 "Use system pybind11" OFF )
104+ dart_option(DART_USE_SYSTEM_TRACY "Use system Tracy" OFF )
105+ dart_option(DART_VERBOSE "Whether print detailed information in CMake process" OFF )
105106
106107#===============================================================================
107108# Print intro
0 commit comments