forked from bblanchon/ArduinoJson
17 lines
332 B
CMake
17 lines
332 B
CMake
# ArduinoJson - arduinojson.org
|
|
# Copyright Benoit Blanchon 2014-2017
|
|
# MIT License
|
|
|
|
add_executable(StaticJsonBufferTests
|
|
alloc.cpp
|
|
createArray.cpp
|
|
createObject.cpp
|
|
parseArray.cpp
|
|
parseObject.cpp
|
|
size.cpp
|
|
startString.cpp
|
|
)
|
|
|
|
target_link_libraries(StaticJsonBufferTests catch)
|
|
add_test(StaticJsonBuffer StaticJsonBufferTests)
|