mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-01 14:39:01 +08:00
f35ba0c785
* [luajit] Use nmake build setup [skip actions] * [luajit] Use vcpkg_configure/install_make [skip actions] * Cross build with host tools * Host tools must match target bitness * Cleanup * WIP * Don't touch CI baseline now * Less osx quirks * Move msvc header installation to nmake * Simplify MSVC * Add arm and x86 cross build support
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "luajit",
|
|
"version-date": "2023-01-04",
|
|
"port-version": 1,
|
|
"description": "LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language.",
|
|
"homepage": "https://github.com/LuaJIT/LuaJIT",
|
|
"license": "MIT",
|
|
"supports": "!uwp & !(arm64 & windows)",
|
|
"dependencies": [
|
|
{
|
|
"name": "luajit",
|
|
"host": true,
|
|
"features": [
|
|
"buildvm-64"
|
|
],
|
|
"platform": "!native & (arm64 | x64) & (!windows | mingw)"
|
|
},
|
|
{
|
|
"name": "luajit",
|
|
"host": true,
|
|
"features": [
|
|
"buildvm-32"
|
|
],
|
|
"platform": "!native & ((arm & !arm64) | x86) & (!windows | mingw)"
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-get-vars",
|
|
"host": true
|
|
}
|
|
],
|
|
"features": {
|
|
"buildvm-32": {
|
|
"description": "Install host tools for 32 bit targets",
|
|
"supports": "native & ((arm & !arm64) | x86) & (!windows | mingw)"
|
|
},
|
|
"buildvm-64": {
|
|
"description": "Install host tools for 64 bit targets",
|
|
"supports": "native & (arm64 | x64) & (!windows | mingw)"
|
|
}
|
|
}
|
|
}
|