view extern/json/CMakeLists.txt @ 436:a2ed6bc6e42c release-2.1

Fix #642: fix case sensitivity in hangman, roulette Plugins hangman and roulette are actually case sensitive which means that using them in #abc and #ABC ends in different results and should not. Task: #642 Errata: 20170403
author David Demelier <markand@malikania.fr>
date Mon, 03 Apr 2017 21:32:43 +0200
parents c6fbb6e0e06d
children 27587ff92a64
line wrap: on
line source

#
# CMakeLists.txt -- CMake build system for irccd
#
# Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
#
# Permission to use, copy, modify, and/or distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#

project(json)

add_library(extern-json INTERFACE)
target_sources(extern-json INTERFACE ${json_SOURCE_DIR}/json.hpp)
target_include_directories(extern-json INTERFACE ${json_SOURCE_DIR})