CMake: rename test target to "tests"

Comply with CMake policy CMP0037: "test" is a reserved target name.
This commit is contained in:
Matteo Cypriani 2016-11-03 12:29:10 -04:00
parent 3df3a14762
commit 44dcf42180
2 changed files with 4 additions and 3 deletions

View File

@ -233,6 +233,6 @@ add_custom_target(static DEPENDS ${OWLPS_STATIC_TARGETS})
### Tests ###
add_custom_target(test
add_custom_target(tests
COMMAND ${CMAKE_RUNTIME_OUTPUT_DIRECTORY}/test_positioner
DEPENDS test_positioner)

View File

@ -148,9 +148,10 @@ To display all the available targets, type:
= Running the tests =
To run the unit tests, use the ``test`` target:
To run the unit tests, you will need to install ``cxxtest``. Then use
the ``tests`` target from your build directory:
``` make test
``` make tests
Currently, only OwlPS Positioner has (partial) unit tests.