Mercurial > hg > piper-cpp
comparison ext/json11/CMakeLists.txt @ 247:8a031eb9a25f
Merge branch 'output-type-uri'
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Thu, 15 Jun 2017 09:52:01 +0100 |
parents | d607ae858682 |
children |
comparison
equal
deleted
inserted
replaced
219:db929669e7d3 | 247:8a031eb9a25f |
---|---|
1 project(json11) | |
2 | |
3 cmake_minimum_required(VERSION 2.8) | 1 cmake_minimum_required(VERSION 2.8) |
2 if (CMAKE_VERSION VERSION_LESS "3") | |
3 project(json11 CXX) | |
4 else() | |
5 cmake_policy(SET CMP0048 NEW) | |
6 project(json11 VERSION 1.0.0 LANGUAGES CXX) | |
7 endif() | |
4 | 8 |
5 enable_testing() | 9 enable_testing() |
6 | 10 |
7 add_definitions( | 11 option(JSON11_BUILD_TESTS "Build unit tests" OFF) |
8 -std=c++11 | 12 option(JSON11_ENABLE_DR1467_CANARY "Enable canary test for DR 1467" OFF) |
9 -fno-rtti | |
10 -fno-exceptions | |
11 -Wall | |
12 -Wextra | |
13 -Werror) | |
14 | 13 |
15 set(json11_SRCS json11.cpp) | 14 if(CMAKE_VERSION VERSION_LESS "3") |
15 add_definitions(-std=c++11) | |
16 else() | |
17 set(CMAKE_CXX_STANDARD 11) | |
18 set(CMAKE_CXX_STANDARD_REQUIRED ON) | |
19 endif() | |
16 | 20 |
17 add_library(json11 STATIC ${json11_SRCS}) | 21 if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT) |
22 set(CMAKE_INSTALL_PREFIX /usr) | |
23 endif() | |
18 | 24 |
19 add_test(json11_test json11_test) | 25 add_library(json11 json11.cpp) |
26 target_include_directories(json11 PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) | |
27 target_compile_options(json11 | |
28 PRIVATE -fPIC -fno-rtti -fno-exceptions -Wall) | |
20 | 29 |
21 add_executable(json11_test ${json11_SRCS} test.cpp) | 30 # Set warning flags, which may vary per platform |
31 include(CheckCXXCompilerFlag) | |
32 set(_possible_warnings_flags /W4 /WX -Wextra -Werror) | |
33 foreach(_warning_flag in ${_possible_warnings_flags}) | |
34 CHECK_CXX_COMPILER_FLAG(_warning_flag _flag_supported) | |
35 if(${_flag_supported}) | |
36 target_compile_options(json11 PRIVATE ${_warning_flag}) | |
37 endif() | |
38 endforeach() | |
39 | |
40 configure_file("json11.pc.in" "json11.pc" @ONLY) | |
41 | |
42 if (JSON11_BUILD_TESTS) | |
43 | |
44 # enable test for DR1467, described here: https://llvm.org/bugs/show_bug.cgi?id=23812 | |
45 if(JSON11_ENABLE_DR1467_CANARY) | |
46 add_definitions(-D JSON11_ENABLE_DR1467_CANARY=1) | |
47 else() | |
48 add_definitions(-D JSON11_ENABLE_DR1467_CANARY=0) | |
49 endif() | |
50 | |
51 add_executable(json11_test test.cpp) | |
52 target_link_libraries(json11_test json11) | |
53 endif() | |
54 | |
55 install(TARGETS json11 DESTINATION lib/${CMAKE_LIBRARY_ARCHITECTURE}) | |
56 install(FILES "${CMAKE_CURRENT_SOURCE_DIR}/json11.hpp" DESTINATION include/${CMAKE_LIBRARY_ARCHITECTURE}) | |
57 install(FILES "${CMAKE_CURRENT_BINARY_DIR}/json11.pc" DESTINATION lib/${CMAKE_LIBRARY_ARCHITECTURE}/pkgconfig) |