Skip to content

Commit 5a95eae

Browse files
committed
Fix make targets
1 parent eb86baf commit 5a95eae

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,14 @@ $ make help
9797

9898
# Run all C++ tests or grouped test sets
9999
$ make check
100-
$ make check.tests
101100
$ make check.kinematics
102101
$ make check.mechanics
103102
$ make check.statics
104103
$ make check.dynamics
104+
$ make check.cablerobot
105+
$ make check.jumpingrobot
106+
$ make check.pandarobot
107+
$ make check.tests # other tests
105108

106109
# Run a single C++ test executable target
107110
$ make testTwistAccelFactor.run

examples/CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@ foreach(EXAMPLE ${EXAMPLE_SUBDIRS})
2121
add_subdirectory(${EXAMPLE})
2222
endforeach()
2323

24-
# Convenience alias: build all examples via a check-style target name.
25-
add_custom_target(check.examples DEPENDS examples)
26-
2724
# --- Process Python Animation Scripts ---
2825
# This automatically finds 'animate.py' scripts and creates .animate targets.
2926
message(STATUS "Searching for python animation scripts...")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
gtsamAddTestsGlob(tests "test*.cpp" "" "gtdynamics")
1+
gtsamAddTestsGlob(cablerobot "test*.cpp" "" "gtdynamics")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
gtsamAddTestsGlob(tests "test*.cpp" "" "gtdynamics")
1+
gtsamAddTestsGlob(jumpingrobot "test*.cpp" "" "gtdynamics")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
gtsamAddTestsGlob(tests "test*.cpp" "" "gtdynamics")
1+
gtsamAddTestsGlob(pandarobot "test*.cpp" "" "gtdynamics")

0 commit comments

Comments
 (0)