json/CMakeLists.txt

16 lines
231 B
CMake
Raw Normal View History

2015-04-26 23:21:16 +02:00
cmake_minimum_required(VERSION 3.1.2)
2015-04-26 22:47:40 +02:00
project(json CXX)
add_executable(json_unit
src/json.hpp test/catch.hpp test/unit.cpp
)
target_compile_features(json_unit
PRIVATE cxx_range_for
)
include_directories(
src test
)