mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-29 14:59:03 +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
25 lines
564 B
Plaintext
25 lines
564 B
Plaintext
# Package information for LuaJIT to be used by pkg-config.
|
|
majver=2
|
|
minver=1
|
|
relver=0
|
|
version=${majver}.${minver}.${relver}-beta3
|
|
abiver=51
|
|
|
|
prefix=@PREFIX@
|
|
multilib=lib
|
|
exec_prefix=${prefix}
|
|
libdir=${exec_prefix}/${multilib}
|
|
libname=lua${abiver}
|
|
includedir=${prefix}/include/luajit
|
|
|
|
INSTALL_LMOD=${prefix}/share/lua/${abiver}
|
|
INSTALL_CMOD=${prefix}/${multilib}/lua/${abiver}
|
|
|
|
Name: LuaJIT
|
|
Description: Just-in-time compiler for Lua
|
|
URL: https://luajit.org
|
|
Version: ${version}
|
|
Requires:
|
|
Libs: -L${libdir} -l${libname}
|
|
Cflags: -I${includedir} @LJIT_MSVC_PC_CFLAGS@
|