mirror of
https://github.com/bblanchon/ArduinoJson.git
synced 2025-11-02 23:51:37 +01:00
20 lines
327 B
CMake
20 lines
327 B
CMake
# ArduinoJson - https://arduinojson.org
|
|
# Copyright © 2014-2025, Benoit BLANCHON
|
|
# MIT License
|
|
|
|
add_executable(NumbersTests
|
|
convertNumber.cpp
|
|
decomposeFloat.cpp
|
|
parseDouble.cpp
|
|
parseFloat.cpp
|
|
parseInteger.cpp
|
|
parseNumber.cpp
|
|
)
|
|
|
|
add_test(Numbers NumbersTests)
|
|
|
|
set_tests_properties(Numbers
|
|
PROPERTIES
|
|
LABELS "Catch"
|
|
)
|