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
부모 3df3a14762
커밋 44dcf42180
2개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제

파일 보기

@ -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)

파일 보기

@ -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.