json/CMakeLists.txt

16 lines
223 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
)
2015-04-26 23:31:22 +02:00
set(CMAKE_CXX_FLAGS
"-std=c++11 -stdlib=libc++"
2015-04-26 22:47:40 +02:00
)
include_directories(
src test
)