-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add requests to get tags and metafields
- Loading branch information
1 parent
ce4338e
commit d8a629b
Showing
13 changed files
with
359 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,97 +1,110 @@ | ||
{ | ||
"version": 3, | ||
"cmakeMinimumRequired": { | ||
"major": 3, | ||
"minor": 21, | ||
"patch": 0 | ||
}, | ||
"configurePresets": [ | ||
{ | ||
"name": "default", | ||
"hidden": true, | ||
"displayName": "Default Config", | ||
"description": "Default build using Ninja generator", | ||
"generator": "Ninja", | ||
"binaryDir": "${sourceDir}/cmake-build-${presetName}", | ||
"cacheVariables": { | ||
"CMAKE_INSTALL_PREFIX": "/usr" | ||
} | ||
"version": 3, | ||
"cmakeMinimumRequired": { | ||
"major": 3, | ||
"minor": 21, | ||
"patch": 0 | ||
}, | ||
{ | ||
"name": "default-windows", | ||
"hidden": true, | ||
"cacheVariables": { | ||
"CMAKE_PREFIX_PATH": "c:/Qt/6.5.2/msvc2019_64", | ||
"OPENSSL_ROOT": "c:/Qt/Tools/OpenSSLv3/Win_x64", | ||
"CMAKE_INSTALL_PREFIX": "dist" | ||
} | ||
}, | ||
{ | ||
"name": "default-macos", | ||
"hidden": true, | ||
"cacheVariables": { | ||
"CMAKE_PREFIX_PATH": "$env{HOME}/Qt/6.5.2/macos", | ||
"CMAKE_INSTALL_PREFIX": "dist" | ||
} | ||
}, | ||
{ | ||
"name": "debug", | ||
"inherits": "default", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug" | ||
} | ||
}, | ||
{ | ||
"name": "release", | ||
"inherits": "default", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Release" | ||
} | ||
}, | ||
{ | ||
"name": "debug-win", | ||
"inherits": ["default-windows", "debug"] | ||
}, | ||
{ | ||
"name": "release-win", | ||
"inherits": ["default-windows", "release"] | ||
}, | ||
{ | ||
"name": "release-macos", | ||
"inherits": ["default-macos", "release"] | ||
}, | ||
{ | ||
"name": "release-macos-noupdate", | ||
"inherits": ["default-macos", "release"], | ||
"cacheVariables": { | ||
"KEMAI_ENABLE_UPDATE_CHECK": "OFF" | ||
} | ||
} | ||
], | ||
"buildPresets": [ | ||
{ | ||
"name": "debug", | ||
"configurePreset": "debug" | ||
}, | ||
{ | ||
"name": "release", | ||
"configurePreset": "release" | ||
}, | ||
{ | ||
"name": "debug-win", | ||
"configurePreset": "debug-win" | ||
}, | ||
{ | ||
"name": "release-win", | ||
"configurePreset": "release-win" | ||
}, | ||
{ | ||
"name": "release-macos", | ||
"configurePreset": "release-macos" | ||
}, | ||
{ | ||
"name": "release-macos-noupdate", | ||
"configurePreset": "release-macos-noupdate" | ||
} | ||
] | ||
"configurePresets": [ | ||
{ | ||
"name": "default", | ||
"hidden": true, | ||
"displayName": "Default Config", | ||
"description": "Default build using Ninja generator", | ||
"generator": "Ninja", | ||
"binaryDir": "${sourceDir}/cmake-build-${presetName}", | ||
"cacheVariables": { | ||
"CMAKE_INSTALL_PREFIX": "/usr", | ||
"SPDLOG_FMT_EXTERNAL": "ON" | ||
} | ||
}, | ||
{ | ||
"name": "default-windows", | ||
"hidden": true, | ||
"cacheVariables": { | ||
"CMAKE_PREFIX_PATH": "c:/Qt/6.6.2/msvc2019_64", | ||
"OPENSSL_ROOT": "c:/Qt/Tools/OpenSSLv3/Win_x64", | ||
"CMAKE_INSTALL_PREFIX": "dist" | ||
} | ||
}, | ||
{ | ||
"name": "default-macos", | ||
"hidden": true, | ||
"cacheVariables": { | ||
"CMAKE_PREFIX_PATH": "$env{HOME}/Qt/6.6.2/macos", | ||
"CMAKE_INSTALL_PREFIX": "dist" | ||
} | ||
}, | ||
{ | ||
"name": "debug", | ||
"inherits": "default", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Debug" | ||
} | ||
}, | ||
{ | ||
"name": "release", | ||
"inherits": "default", | ||
"cacheVariables": { | ||
"CMAKE_BUILD_TYPE": "Release" | ||
} | ||
}, | ||
{ | ||
"name": "debug-win", | ||
"inherits": [ | ||
"default-windows", | ||
"debug" | ||
] | ||
}, | ||
{ | ||
"name": "release-win", | ||
"inherits": [ | ||
"default-windows", | ||
"release" | ||
] | ||
}, | ||
{ | ||
"name": "release-macos", | ||
"inherits": [ | ||
"default-macos", | ||
"release" | ||
] | ||
}, | ||
{ | ||
"name": "release-macos-noupdate", | ||
"inherits": [ | ||
"default-macos", | ||
"release" | ||
], | ||
"cacheVariables": { | ||
"KEMAI_ENABLE_UPDATE_CHECK": "OFF" | ||
} | ||
} | ||
], | ||
"buildPresets": [ | ||
{ | ||
"name": "debug", | ||
"configurePreset": "debug" | ||
}, | ||
{ | ||
"name": "release", | ||
"configurePreset": "release" | ||
}, | ||
{ | ||
"name": "debug-win", | ||
"configurePreset": "debug-win" | ||
}, | ||
{ | ||
"name": "release-win", | ||
"configurePreset": "release-win" | ||
}, | ||
{ | ||
"name": "release-macos", | ||
"configurePreset": "release-macos" | ||
}, | ||
{ | ||
"name": "release-macos-noupdate", | ||
"configurePreset": "release-macos-noupdate" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.