source: rtos_arduino/trunk/arduino_lib/libraries/ArduinoJson/CMakeLists.txt@ 209

Last change on this file since 209 was 209, checked in by ertl-honda, 8 years ago

BlueMix用のフィアルを追加

File size: 561 bytes
Line 
1# Copyright Benoit Blanchon 2014-2016
2# MIT License
3#
4# Arduino JSON library
5# https://github.com/bblanchon/ArduinoJson
6# If you like this project, please add a star!
7
8cmake_minimum_required(VERSION 2.8.12)
9project(ArduinoJson)
10
11enable_testing()
12
13set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/lib)
14set(CMAKE_LIBRARY_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/lib)
15set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_SOURCE_DIR}/bin)
16
17if(${COVERAGE})
18 set(CMAKE_CXX_FLAGS "-g -O0 -fprofile-arcs -ftest-coverage")
19endif()
20
21add_subdirectory(src)
22add_subdirectory(test)
Note: See TracBrowser for help on using the repository browser.