Skip to content

Commit

Permalink
Set DART_BUILD_DARTPY=OFF by default
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 committed Jul 7, 2024
1 parent 6585763 commit bf4c87d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ endif()
dart_option(DART_ENABLE_SIMD
"Build DART with all SIMD instructions on the current local machine" OFF)
dart_option(DART_BUILD_GUI_OSG "Build osgDart library" ON)
dart_option(DART_BUILD_DARTPY "Build dartpy" ON)
dart_option(DART_BUILD_DARTPY "Build dartpy" OFF)
dart_option(DART_BUILD_PROFILE "Build DART with profiling options" OFF)
dart_option(DART_CODECOV "Turn on codecov support" OFF)
dart_option(DART_FAST_DEBUG "Add -O1 option for DEBUG mode build" OFF)
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ def build_extension(self, ext: CMakeExtension) -> None:
f"-DPYTHON_EXECUTABLE={sys.executable}",
f"-DCMAKE_BUILD_TYPE={cfg}", # not used on MSVC, but no harm
f"-DBUILD_SHARED_LIBS=OFF",
f"-DDART_BUILD_DARTPY=ON",
f"-DDART_ENABLE_SIMD=OFF",
f"-DDART_BUILD_WHEELS=ON",
f"-DDART_TREAT_WARNINGS_AS_ERRORS=OFF",
Expand Down

0 comments on commit bf4c87d

Please sign in to comment.