Files
ArduinoJson/test/MemberProxy/CMakeLists.txt

15 lines
259 B
CMake
Raw Normal View History

# ArduinoJson - arduinojson.org
2019-02-15 13:31:46 +01:00
# Copyright Benoit Blanchon 2014-2019
# MIT License
add_executable(MemberProxyTests
add.cpp
2019-02-25 11:44:22 +01:00
clear.cpp
subscript.cpp
set.cpp
2019-02-25 11:07:01 +01:00
size.cpp
)
target_link_libraries(MemberProxyTests catch)
add_test(MemberProxy MemberProxyTests)