annotate json/json11/CMakeLists.txt @ 44:a98ef4c2616b

Make base64/text selectable when serialising process and feature blocks; add base64 version as an output format for vampipe-convert; make VamPipePluginLibrary switch to returning base64 encoding as soon as it is fed any as input
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 08 Sep 2016 15:27:48 +0100
parents 6e8607ebad03
children
rev   line source
c@5 1 project(json11)
c@5 2
c@5 3 cmake_minimum_required(VERSION 2.8)
c@5 4
c@5 5 enable_testing()
c@5 6
c@5 7 add_definitions(
c@5 8 -std=c++11
c@5 9 -fno-rtti
c@5 10 -fno-exceptions
c@5 11 -Wall
c@5 12 -Wextra
c@5 13 -Werror)
c@5 14
c@5 15 set(json11_SRCS json11.cpp)
c@5 16
c@5 17 add_library(json11 STATIC ${json11_SRCS})
c@5 18
c@5 19 add_test(json11_test json11_test)
c@5 20
c@5 21 add_executable(json11_test ${json11_SRCS} test.cpp)