comparison ext/json11/CMakeLists.txt @ 150:bf8e3e7dd7de

Move some things around, and add overall test script
author Chris Cannam <cannam@all-day-breakfast.com>
date Fri, 20 Jan 2017 17:45:54 +0000
parents
children d607ae858682
comparison
equal deleted inserted replaced
149:70bf40743d6a 150:bf8e3e7dd7de
1 project(json11)
2
3 cmake_minimum_required(VERSION 2.8)
4
5 enable_testing()
6
7 add_definitions(
8 -std=c++11
9 -fno-rtti
10 -fno-exceptions
11 -Wall
12 -Wextra
13 -Werror)
14
15 set(json11_SRCS json11.cpp)
16
17 add_library(json11 STATIC ${json11_SRCS})
18
19 add_test(json11_test json11_test)
20
21 add_executable(json11_test ${json11_SRCS} test.cpp)