Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
json
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
json
Commits
4d1e4c6d
Unverified
Commit
4d1e4c6d
authored
Nov 02, 2019
by
Niels Lohmann
Committed by
GitHub
Nov 02, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1780 from t-b/add-msvc-16-2019
appveyor.yml: Add MSVC 16 2019 support
parents
a1828bbf
c6cbdf96
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
18 deletions
+35
-18
appveyor.yml
appveyor.yml
+33
-18
CMakeLists.txt
test/cmake_import/CMakeLists.txt
+1
-0
CMakeLists.txt
test/cmake_import_minver/CMakeLists.txt
+1
-0
No files found.
appveyor.yml
View file @
4d1e4c6d
...
...
@@ -16,6 +16,20 @@ environment:
LINKER_FLAGS
:
"
"
GENERATOR
:
Visual Studio 15 2017
-
APPVEYOR_BUILD_WORKER_IMAGE
:
Visual Studio 2019
configuration
:
Debug
platform
:
x86
CXX_FLAGS
:
"
"
LINKER_FLAGS
:
"
"
GENERATOR
:
Visual Studio 16 2019
-
APPVEYOR_BUILD_WORKER_IMAGE
:
Visual Studio 2019
configuration
:
Debug
platform
:
x64
CXX_FLAGS
:
"
"
LINKER_FLAGS
:
"
"
GENERATOR
:
Visual Studio 16 2019
-
APPVEYOR_BUILD_WORKER_IMAGE
:
Visual Studio 2015
configuration
:
Debug
COMPILER
:
mingw
...
...
@@ -50,54 +64,55 @@ environment:
-
APPVEYOR_BUILD_WORKER_IMAGE
:
Visual Studio 2017
configuration
:
Release
platform
:
x86
CXX_FLAGS
:
"
"
CXX_FLAGS
:
"
/permissive-
/std:c++latest
/utf-8
"
LINKER_FLAGS
:
"
"
GENERATOR
:
Visual Studio 15 2017
-
APPVEYOR_BUILD_WORKER_IMAGE
:
Visual Studio 201
7
-
APPVEYOR_BUILD_WORKER_IMAGE
:
Visual Studio 201
9
configuration
:
Release
platform
:
x86
CXX_FLAGS
:
"
/permissive-
/std:c++latest
/utf-8
"
CXX_FLAGS
:
"
"
LINKER_FLAGS
:
"
"
GENERATOR
:
Visual Studio 1
5 2017
GENERATOR
:
Visual Studio 1
6 2019
-
APPVEYOR_BUILD_WORKER_IMAGE
:
Visual Studio 2015
configuration
:
Release
platform
:
x64
CXX_FLAGS
:
"
"
LINKER_FLAGS
:
"
"
GENERATOR
:
Visual Studio 14 2015
Win64
GENERATOR
:
Visual Studio 14 2015
-
APPVEYOR_BUILD_WORKER_IMAGE
:
Visual Studio 2017
configuration
:
Release
platform
:
x64
CXX_FLAGS
:
"
"
LINKER_FLAGS
:
"
"
GENERATOR
:
Visual Studio 15 2017
Win64
CXX_FLAGS
:
"
/permissive-
/std:c++latest
/utf-8
/F4000000
"
LINKER_FLAGS
:
"
/STACK:4000000
"
GENERATOR
:
Visual Studio 15 2017
-
APPVEYOR_BUILD_WORKER_IMAGE
:
Visual Studio 201
7
-
APPVEYOR_BUILD_WORKER_IMAGE
:
Visual Studio 201
9
configuration
:
Release
platform
:
x64
CXX_FLAGS
:
"
/permissive-
/std:c++latest
/utf-8
/F4000000
"
LINKER_FLAGS
:
"
/STACK:4000000
"
GENERATOR
:
Visual Studio 1
5 2017 Win64
CXX_FLAGS
:
"
"
LINKER_FLAGS
:
"
"
GENERATOR
:
Visual Studio 1
6 2019
init
:
-
cmake --version
-
msbuild /version
install
:
-
if "%COMPILER%"=="mingw" appveyor DownloadFile https://github.com/ninja-build/ninja/releases/download/v1.6.0/ninja-win.zip -FileName ninja.zip
-
if "%COMPILER%"=="mingw" 7z x ninja.zip -oC:\projects\deps\ninja > nul
-
if "%COMPILER%"=="mingw" set PATH=C:\projects\deps\ninja;%PATH%
-
if "%COMPILER%"=="mingw" set PATH=C:\mingw-w64\x86_64-7.3.0-posix-seh-rt_v5-rev0\mingw64\bin;%PATH%
-
if "%COMPILER%"=="mingw" g++ --version
-
if "%COMPILER%"=="mingw" appveyor DownloadFile https://github.com/ninja-build/ninja/releases/download/v1.6.0/ninja-win.zip -FileName ninja.zip
-
if "%COMPILER%"=="mingw" 7z x ninja.zip -oC:\projects\deps\ninja > nul
-
if "%COMPILER%"=="mingw" set PATH=C:\projects\deps\ninja;%PATH%
-
if "%COMPILER%"=="mingw" set PATH=C:\mingw-w64\x86_64-7.3.0-posix-seh-rt_v5-rev0\mingw64\bin;%PATH%
-
if "%COMPILER%"=="mingw" g++ --version
-
if "%platform%"=="x86" set GENERATOR_PLATFORM=Win32
before_build
:
# for with_win_header build, inject the inclusion of Windows.h to the single-header library
-
ps
:
if ($env:name -Eq "with_win_header") { $header_path = "single_include\nlohmann\json.hpp" }
-
ps
:
if ($env:name -Eq "with_win_header") { "#include <Windows.h>`n" + (Get-Content $header_path | Out-String) | Set-Content $header_path }
-
cmake . -G "%GENERATOR%" -DCMAKE_BUILD_TYPE="%configuration%" -DCMAKE_CXX_FLAGS="%CXX_FLAGS%" -DCMAKE_EXE_LINKER_FLAGS="%LINKER_FLAGS%" -DCMAKE_IGNORE_PATH="C:/Program Files/Git/usr/bin"
-
if "%GENERATOR%"=="Ninja" (cmake . -G "%GENERATOR%" -DCMAKE_BUILD_TYPE="%configuration%" -DCMAKE_CXX_FLAGS="%CXX_FLAGS%" -DCMAKE_EXE_LINKER_FLAGS="%LINKER_FLAGS%" -DCMAKE_IGNORE_PATH="C:/Program Files/Git/usr/bin") else (cmake . -G "%GENERATOR%" -A "%GENERATOR_PLATFORM%" -DCMAKE_CXX_FLAGS="%CXX_FLAGS%" -DCMAKE_EXE_LINKER_FLAGS="%LINKER_FLAGS%" -DCMAKE_IGNORE_PATH="C:/Program Files/Git/usr/bin")
build_script
:
-
cmake --build . --config "%configuration%"
...
...
test/cmake_import/CMakeLists.txt
View file @
4d1e4c6d
add_test
(
NAME cmake_import_configure
COMMAND
${
CMAKE_COMMAND
}
-G
"
${
CMAKE_GENERATOR
}
"
-A
"
${
CMAKE_GENERATOR_PLATFORM
}
"
-Dnlohmann_json_DIR=
${
PROJECT_BINARY_DIR
}
${
CMAKE_CURRENT_SOURCE_DIR
}
/project
)
...
...
test/cmake_import_minver/CMakeLists.txt
View file @
4d1e4c6d
add_test
(
NAME cmake_import_minver_configure
COMMAND
${
CMAKE_COMMAND
}
-G
"
${
CMAKE_GENERATOR
}
"
-A
"
${
CMAKE_GENERATOR_PLATFORM
}
"
-Dnlohmann_json_DIR=
${
PROJECT_BINARY_DIR
}
${
CMAKE_CURRENT_SOURCE_DIR
}
/project
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment