forked from bblanchon/ArduinoJson
14 lines
248 B
CMake
14 lines
248 B
CMake
# ArduinoJson - arduinojson.org
|
|
# Copyright Benoit Blanchon 2014-2019
|
|
# MIT License
|
|
|
|
add_executable(MemberProxyTests
|
|
add.cpp
|
|
subscript.cpp
|
|
set.cpp
|
|
size.cpp
|
|
)
|
|
|
|
target_link_libraries(MemberProxyTests catch)
|
|
add_test(MemberProxy MemberProxyTests)
|