mirror of
https://github.com/nlohmann/json.git
synced 2026-03-06 09:16:25 +00:00
deploy: e0a17f8475
This commit is contained in:
7
integration/macports/CMakeLists.txt
Normal file
7
integration/macports/CMakeLists.txt
Normal file
@@ -0,0 +1,7 @@
|
||||
cmake_minimum_required(VERSION 3.15)
|
||||
project(json_example)
|
||||
|
||||
find_package(nlohmann_json CONFIG REQUIRED)
|
||||
|
||||
add_executable(json_example example.cpp)
|
||||
target_link_libraries(json_example PRIVATE nlohmann_json::nlohmann_json)
|
||||
10
integration/macports/example.cpp
Normal file
10
integration/macports/example.cpp
Normal file
@@ -0,0 +1,10 @@
|
||||
#include <nlohmann/json.hpp>
|
||||
#include <iostream>
|
||||
#include <iomanip>
|
||||
|
||||
using json = nlohmann::json;
|
||||
|
||||
int main()
|
||||
{
|
||||
std::cout << std::setw(4) << json::meta() << std::endl;
|
||||
}
|
||||
BIN
integration/nuget/nuget-package-content.png
Normal file
BIN
integration/nuget/nuget-package-content.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 19 KiB |
BIN
integration/nuget/nuget-project-changes.png
Normal file
BIN
integration/nuget/nuget-project-changes.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 30 KiB |
BIN
integration/nuget/nuget-project-makefile.png
Normal file
BIN
integration/nuget/nuget-project-makefile.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 54 KiB |
BIN
integration/nuget/nuget-search-package.png
Normal file
BIN
integration/nuget/nuget-search-package.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 94 KiB |
BIN
integration/nuget/nuget-select-package.png
Normal file
BIN
integration/nuget/nuget-select-package.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 154 KiB |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user