mirror of
https://github.com/orange-cpp/omath.git
synced 2026-04-18 15:23:26 +00:00
decomposed method added vector2, vector4 refactored tests added opengl engine to lua added other engines added source tests removed tons of lua files
58 lines
1.1 KiB
JSON
58 lines
1.1 KiB
JSON
{
|
|
"name": "omath",
|
|
"version": "3.10.1",
|
|
"description": "General purpose math library",
|
|
"homepage": "https://github.com/orange-cpp/omath",
|
|
"license": "Zlib",
|
|
"supports": "windows | linux | macos",
|
|
"dependencies": [
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"features": {
|
|
"avx2": {
|
|
"description": "omath will use AVX2 to boost performance",
|
|
"supports": "!arm"
|
|
},
|
|
"benchmark": {
|
|
"description": "Build benchmarks",
|
|
"dependencies": [
|
|
"benchmark"
|
|
]
|
|
},
|
|
"examples": {
|
|
"description": "Build examples",
|
|
"dependencies": [
|
|
"glfw3",
|
|
"glew",
|
|
"opengl"
|
|
]
|
|
},
|
|
"imgui": {
|
|
"description": "omath will define method to convert omath types to imgui types",
|
|
"dependencies": [
|
|
"imgui"
|
|
]
|
|
},
|
|
"tests": {
|
|
"description": "Build unit-tests using GTest",
|
|
"dependencies": [
|
|
"gtest"
|
|
]
|
|
},
|
|
"lua": {
|
|
"description": "lua support for omath",
|
|
"dependencies": [
|
|
"lua",
|
|
"sol2"
|
|
]
|
|
}
|
|
}
|
|
}
|