Files
ArduinoJson/extras/tests/Numbers/CMakeLists.txt

18 lines
287 B
CMake
Raw Normal View History

# ArduinoJson - https://arduinojson.org
2021-01-25 09:14:15 +01:00
# Copyright Benoit Blanchon 2014-2021
# MIT License
add_executable(NumbersTests
parseFloat.cpp
parseDouble.cpp
parseInteger.cpp
parseNumber.cpp
)
2019-12-24 16:41:00 +01:00
add_test(Numbers NumbersTests)
2021-04-25 11:38:19 +02:00
set_tests_properties(Numbers
PROPERTIES
LABELS "Catch"
)