2
0
mirror of https://github.com/boostorg/json.git synced 2026-02-17 13:52:13 +00:00
Files
json/example/CMakeLists.txt
Vinnie Falco 2db5a6c57f pretty example
2019-11-15 20:11:57 -08:00

23 lines
529 B
CMake

#
# Copyright (c) 2019 Vinnie Falco (vinnie.falco@gmail.com)
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#
# Official repository: https://github.com/vinniefalco/json
#
GroupSources(example "/")
add_executable (pretty
file.hpp
pretty.cpp
)
set_property(TARGET pretty PROPERTY FOLDER "example")
add_executable (allocator
file.hpp
allocator.cpp
)
set_property(TARGET allocator PROPERTY FOLDER "example")