diff options
| author | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
|---|---|---|
| committer | Ethan Morgan <ethan@gweithio.com> | 2026-02-14 16:44:06 +0000 |
| commit | 54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch) | |
| tree | d915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/vlpp/vcpkg.json | |
Diffstat (limited to 'vcpkg/ports/vlpp/vcpkg.json')
| -rw-r--r-- | vcpkg/ports/vlpp/vcpkg.json | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/vcpkg/ports/vlpp/vcpkg.json b/vcpkg/ports/vlpp/vcpkg.json new file mode 100644 index 0000000..7aedde8 --- /dev/null +++ b/vcpkg/ports/vlpp/vcpkg.json @@ -0,0 +1,108 @@ +{ + "name": "vlpp", + "version": "1.2.10.2", + "maintainers": "vczh", + "description": "Common C++ construction, including string operation / generic container / linq / General-LR parser generator / multithreading / reflection for C++ / etc", + "homepage": "https://github.com/vczh-libraries/Release", + "license": null, + "supports": "!uwp", + "dependencies": [ + { + "name": "vcpkg-cmake", + "host": true + }, + { + "name": "vcpkg-cmake-config", + "host": true + } + ], + "features": { + "gacuicore": { + "description": "Enable GacUI Core", + "dependencies": [ + { + "name": "vlpp", + "features": [ + "glrparser", + "workflowlibrary" + ] + } + ] + }, + "gacuirecompiler": { + "description": "Enable GacUI Compiler", + "dependencies": [ + { + "name": "vlpp", + "features": [ + "gacuireflection", + "workflowcompiler" + ] + } + ] + }, + "gacuireflection": { + "description": "Enable GacUI Reflection", + "dependencies": [ + { + "name": "vlpp", + "features": [ + "gacuicore", + "workflowruntime" + ] + } + ] + }, + "glrparser": { + "description": "Enable GlrParser", + "dependencies": [ + { + "name": "vlpp", + "features": [ + "reflection" + ] + } + ] + }, + "reflection": { + "description": "Enable Reflection" + }, + "tools": { + "description": "Build tools", + "supports": "!osx" + }, + "workflowcompiler": { + "description": "Enable VlppWorkflow Compiler", + "dependencies": [ + { + "name": "vlpp", + "features": [ + "workflowruntime" + ] + } + ] + }, + "workflowlibrary": { + "description": "Enable VlppWorkflow Library", + "dependencies": [ + { + "name": "vlpp", + "features": [ + "reflection" + ] + } + ] + }, + "workflowruntime": { + "description": "Enable VlppWorkflow Runtime", + "dependencies": [ + { + "name": "vlpp", + "features": [ + "workflowlibrary" + ] + } + ] + } + } +} |