added vcpkg manifest file

This commit is contained in:
2025-10-23 06:35:22 +03:00
parent 2c7e443f52
commit 8adf5db409
5 changed files with 81 additions and 2 deletions

31
vcpkg.json Normal file
View File

@@ -0,0 +1,31 @@
{
"name": "omath",
"version": "3.10.1",
"description": "General purpose math library",
"homepage": "https://github.com/orange-cpp/omath",
"license": "Zlib",
"supports": "windows | linux",
"dependencies": [
{
"name": "vcpkg-cmake",
"host": true
},
{
"name": "vcpkg-cmake-config",
"host": true
}
],
"features": {
"avx2": {
"description": "Omath will use AVX2 to boost performance",
"supports": "!arm"
},
"imgui": {
"description": "Omath will define method to convert omath types to imgui types",
"dependencies": [
"imgui"
]
}
}
}