Sha256: 287f34cbd3a557fd25f90448609ff58aad836a02c8430fe5a10626e4bca1e615

Contents?: true

Size: 969 Bytes

Versions: 12

Compression:

Stored size: 969 Bytes

Contents

cmake_minimum_required(VERSION 2.8)

if(POLICY CMP0054)
  cmake_policy(SET CMP0054 NEW)
endif()

set(EXAMPLES
    capitalize
    condense
    filterkey
    filterkeydom
    jsonx
    lookaheadparser
    messagereader
    parsebyparts
    pretty
    prettyauto
    schemavalidator
    serialize
    simpledom
    simplereader
    simplepullreader
    simplewriter
    tutorial)
    
include_directories("../include/")

add_definitions(-D__STDC_FORMAT_MACROS)
set_property(DIRECTORY PROPERTY COMPILE_OPTIONS ${EXTRA_CXX_FLAGS})

if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
    set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread")
endif()

add_executable(archivertest archiver/archiver.cpp archiver/archivertest.cpp)

foreach (example ${EXAMPLES})
    add_executable(${example} ${example}/${example}.cpp)
endforeach()

if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
    target_link_libraries(parsebyparts pthread)
endif()

add_custom_target(examples ALL DEPENDS ${EXAMPLES})

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
simdjson-0.3.0 vendor/simdjson/dependencies/rapidjson/example/CMakeLists.txt
rj_schema-0.2.3 ext/rj_schema/rapidjson/example/CMakeLists.txt
rj_schema-0.2.2 ext/rj_schema/rapidjson/example/CMakeLists.txt
rj_schema-0.2.1 ext/rj_schema/rapidjson/example/CMakeLists.txt
rj_schema-0.2.0 ext/rj_schema/rapidjson/example/CMakeLists.txt
rj_schema-0.1.4 ext/rj_schema/rapidjson/example/CMakeLists.txt
rj_schema-0.1.3 ext/rj_schema/rapidjson/example/CMakeLists.txt
rj_schema-0.1.2 ext/rj_schema/rapidjson/example/CMakeLists.txt
rj_schema-0.1.1 ext/rj_schema/rapidjson/example/CMakeLists.txt
rj_schema-0.1.0 ext/rj_schema/rapidjson/example/CMakeLists.txt
rj_schema-0.0.2 ext/rj_schema/rapidjson/example/CMakeLists.txt
rj_schema-0.0.1 ext/rj_schema/rapidjson/example/CMakeLists.txt