-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #225 from jorisv/topic/workspace
Enable jrl-cmakemodules workspace compatiblity
- Loading branch information
Showing
5 changed files
with
26 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule cmake
updated
14 files
+39 −13 | base.cmake | |
+6 −1 | coverage.cmake | |
+11 −2 | debian.cmake | |
+98 −61 | dist.cmake | |
+6 −2 | distcheck.cmake | |
+14 −4 | doxygen.cmake | |
+34 −5 | package-config.cmake | |
+3 −2 | python-helpers.cmake | |
+48 −23 | release.cmake | |
+12 −6 | sphinx.cmake | |
+5 −3 | stubs.cmake | |
+17 −9 | test.cmake | |
+11 −2 | uninstall.cmake | |
+1 −0 | version.cmake |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,6 @@ | ||
if(NOT pinocchio_FOUND) | ||
message( | ||
FATAL_ERROR | ||
"Pinocchio is required to build unit tests\n" | ||
"please either install Pinocchio or reconfigure without unit tests (-DBUILD_TESTING=OFF)" | ||
) | ||
endif(NOT pinocchio_FOUND) | ||
|
||
set(${PROJECT_NAME}_PYTHON_TESTS load) | ||
|
||
foreach(TEST ${${PROJECT_NAME}_PYTHON_TESTS}) | ||
add_python_unit_test("py-${TEST}" "unittest/test_${TEST}.py" python) | ||
endforeach(TEST ${${PROJECT_NAME}_PYTHON_TESTS}) | ||
add_python_unit_test("${PROJECT_NAME}-py-${TEST}" "unittest/test_${TEST}.py" | ||
python) | ||
endforeach() |