c@75: project(json11) c@75: c@75: cmake_minimum_required(VERSION 2.8) c@75: c@75: enable_testing() c@75: c@75: add_definitions( c@75: -std=c++11 c@75: -fno-rtti c@75: -fno-exceptions c@75: -Wall c@75: -Wextra c@75: -Werror) c@75: c@75: set(json11_SRCS json11.cpp) c@75: c@75: add_library(json11 STATIC ${json11_SRCS}) c@75: c@75: add_test(json11_test json11_test) c@75: c@75: add_executable(json11_test ${json11_SRCS} test.cpp)