mirror of
https://github.com/nlohmann/json.git
synced 2024-11-23 22:19:02 +08:00
another try
This commit is contained in:
parent
ae2676e7f0
commit
1e20bfa14a
15
CMakeLists.txt
Normal file
15
CMakeLists.txt
Normal file
@ -0,0 +1,15 @@
|
||||
cmake_minimum_required(VERSION 3.2)
|
||||
|
||||
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
|
||||
)
|
6
appveyor.yml
Normal file
6
appveyor.yml
Normal file
@ -0,0 +1,6 @@
|
||||
version: 1.0.{build}
|
||||
os: Visual Studio 2015 Preview
|
||||
init:
|
||||
- cmake -G "Visual Studio 14 2015 Win64"
|
||||
build:
|
||||
verbosity: minimal
|
Loading…
Reference in New Issue
Block a user