mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
33 lines
1.1 KiB
CMake
33 lines
1.1 KiB
CMake
# Copyright (c) 2012 TNO, The Netherlands.
|
|
#
|
|
# This file contains information proprietary to TNO.
|
|
#
|
|
# Any disclosure or use of this information or any reproduction of this document or any part thereof for
|
|
# other than the specified purpose for which it is intended is expressly prohibited except as TNO may
|
|
# otherwise agree to in writing.
|
|
|
|
project(jsoncpp)
|
|
|
|
# define the current source/header path
|
|
set(CURRENT_HEADER_DIR ${CMAKE_SOURCE_DIR}/dependencies/include/json)
|
|
set(CURRENT_SOURCE_DIR ${CMAKE_SOURCE_DIR}/dependencies/build/jsoncpp)
|
|
|
|
add_library(jsoncpp
|
|
${CURRENT_HEADER_DIR}/autolink.h
|
|
${CURRENT_HEADER_DIR}/config.h
|
|
${CURRENT_HEADER_DIR}/features.h
|
|
${CURRENT_HEADER_DIR}/forwards.h
|
|
${CURRENT_HEADER_DIR}/json.h
|
|
${CURRENT_HEADER_DIR}/reader.h
|
|
${CURRENT_HEADER_DIR}/value.h
|
|
${CURRENT_HEADER_DIR}/writer.h
|
|
|
|
${CURRENT_SOURCE_DIR}/json_batchallocator.h
|
|
${CURRENT_SOURCE_DIR}/json_internalarray.inl
|
|
${CURRENT_SOURCE_DIR}/json_internalmap.inl
|
|
${CURRENT_SOURCE_DIR}/json_reader.cpp
|
|
${CURRENT_SOURCE_DIR}/json_tool.h
|
|
${CURRENT_SOURCE_DIR}/json_value.cpp
|
|
${CURRENT_SOURCE_DIR}/json_valueiterator.inl
|
|
${CURRENT_SOURCE_DIR}/json_writer.cpp)
|