c54fba1095
Add a unit-test written by Huntely, and extend the AP configure code, so the 'time' config of monostables doesn't trigger an incorrect warning in the console / logs. Thanks to Huntley Palmer for pointing this out. SF-ID: https://sourceforge.net/p/flightgear/codetickets/2812/
20 lines
715 B
CMake
20 lines
715 B
CMake
set(TESTSUITE_SOURCES
|
|
${TESTSUITE_SOURCES}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/TestSuite.cxx
|
|
${CMAKE_CURRENT_SOURCE_DIR}/testDigitalFilter.cxx
|
|
${CMAKE_CURRENT_SOURCE_DIR}/testPidController.cxx
|
|
${CMAKE_CURRENT_SOURCE_DIR}/testPidControllerData.cxx
|
|
${CMAKE_CURRENT_SOURCE_DIR}/testInputValue.cxx
|
|
${CMAKE_CURRENT_SOURCE_DIR}/testMonostable.cxx
|
|
PARENT_SCOPE
|
|
)
|
|
|
|
set(TESTSUITE_HEADERS
|
|
${TESTSUITE_HEADERS}
|
|
${CMAKE_CURRENT_SOURCE_DIR}/testDigitalFilter.hxx
|
|
${CMAKE_CURRENT_SOURCE_DIR}/testPidController.hxx
|
|
${CMAKE_CURRENT_SOURCE_DIR}/testPidControllerData.hxx
|
|
${CMAKE_CURRENT_SOURCE_DIR}/testInputValue.hxx
|
|
${CMAKE_CURRENT_SOURCE_DIR}/testMonostable.hxx
|
|
PARENT_SCOPE
|
|
)
|