Files
ArduinoJson/srcs/CMakeLists.txt

6 lines
168 B
CMake
Raw Normal View History

2014-10-16 00:11:23 +02:00
file(GLOB_RECURSE INC_FILES ../include/*.h)
file(GLOB_RECURSE SRC_FILES *.cpp)
2014-10-14 10:01:46 +02:00
2014-10-16 00:11:23 +02:00
include_directories(../include)
add_library(ArduinoJson ${SRC_FILES} ${INC_FILES})