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