Skip to content

Commit

Permalink
[pixi] Remove --target all from build task
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 committed Mar 14, 2024
1 parent 722cbaa commit d187412
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pixi.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ freeglut = ">=3.2.2,<3.3"
configure = "cmake -G Ninja -S . -B build -DDART_VERBOSE=ON"
lint = { cmd= "cmake --build build --target format && black . && isort .", depends_on = ["configure"] }
check-lint = { cmd= "black . --check && isort . --check", depends_on = ["configure"] }
build = { cmd = "cmake --build build -j --target all", depends_on = [
build = { cmd = "cmake --build build -j", depends_on = [
"configure",
] }
build_dartpy = { cmd = "cmake --build build -j --target dartpy", depends_on = [
Expand All @@ -69,7 +69,7 @@ clang-format-14 = ">=14.0.6,<14.1"
configure = "cmake -G Ninja -S . -B build -DDART_VERBOSE=ON"
lint = { cmd= "cmake --build build --target format && black . && isort .", depends_on = ["configure"] }
check-lint = { cmd= "cmake --build build --target check-format && black . --check && isort . --check", depends_on = ["configure"] }
build = { cmd = "cmake --build build -j --target all", depends_on = [
build = { cmd = "cmake --build build -j", depends_on = [
"configure",
] }
build_dartpy = { cmd = "cmake --build build -j --target dartpy", depends_on = [
Expand All @@ -92,7 +92,7 @@ clang-format-14 = ">=14.0.6,<14.1"
configure = "cmake -G Ninja -S . -B build -DDART_VERBOSE=ON"
lint = { cmd= "cmake --build build --target format && black . && isort .", depends_on = ["configure"] }
check-lint = { cmd= "cmake --build build --target check-format && black . --check && isort . --check", depends_on = ["configure"] }
build = { cmd = "cmake --build build -j --target all", depends_on = [
build = { cmd = "cmake --build build -j", depends_on = [
"configure",
] }
build_dartpy = { cmd = "cmake --build build -j --target dartpy", depends_on = [
Expand All @@ -118,7 +118,7 @@ freeglut = ">=3.2.2,<3.3"
configure = "cmake -S . -B build -G 'Visual Studio 17 2022' -DCMAKE_BUILD_TYPE=Release -DDART_MSVC_DEFAULT_OPTIONS=ON -DBUILD_SHARED_LIBS=OFF -DDART_VERBOSE=ON"
lint = { cmd= "black . && isort .", depends_on = ["configure"] }
check-lint = { cmd= "black . --check && isort . --check", depends_on = ["configure"] }
build = { cmd = "cmake --build build --config Release -j --target all", depends_on = [
build = { cmd = "cmake --build build --config Release -j", depends_on = [
"configure",
] }
build_dartpy = { cmd = "cmake --build build -j --target dartpy", depends_on = [
Expand Down

0 comments on commit d187412

Please sign in to comment.