Skip to content

Commit

Permalink
[vcpkg] Use system installed imgui
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 committed Jun 30, 2024
1 parent 45d1818 commit c8faaa5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
-DDART_MSVC_DEFAULT_OPTIONS=ON ^
-DDART_VERBOSE=ON ^
-DBUILD_SHARED_LIBS=${{ matrix.build_shared_libs }} ^
-DDART_USE_SYSTEM_IMGUI=OFF ^
-DDART_USE_SYSTEM_IMGUI=ON ^
|| exit /b
cmake ^
--build build ^
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ def build_extension(self, ext: CMakeExtension) -> None:
# CMake 3.12+ only.
build_args += [f"-j{self.parallel}"]

cmake_args += ["-DDART_USE_SYSTEM_IMGUI=OFF"]
cmake_args += ["-DDART_USE_SYSTEM_IMGUI=ON"]

cmake_args += [
f"-DDART_IN_CI={os.environ.get('DART_IN_CI', 'OFF')}",
Expand Down

0 comments on commit c8faaa5

Please sign in to comment.