aboutsummaryrefslogtreecommitdiff
path: root/vcpkg/ports/luajit/Makefile.nmake
diff options
context:
space:
mode:
authorEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
committerEthan Morgan <ethan@gweithio.com>2026-02-14 16:44:06 +0000
commit54409423f767d8b1cf30cb7d0efca6b4ca138823 (patch)
treed915ac7828703ce4b963efdd9728a1777ba18c1e /vcpkg/ports/luajit/Makefile.nmake
move to own git serverHEADmaster
Diffstat (limited to 'vcpkg/ports/luajit/Makefile.nmake')
-rw-r--r--vcpkg/ports/luajit/Makefile.nmake20
1 files changed, 20 insertions, 0 deletions
diff --git a/vcpkg/ports/luajit/Makefile.nmake b/vcpkg/ports/luajit/Makefile.nmake
new file mode 100644
index 0000000..3ca2508
--- /dev/null
+++ b/vcpkg/ports/luajit/Makefile.nmake
@@ -0,0 +1,20 @@
+all:
+ @echo _CL_ = $(_CL_)
+ @echo _LINK_ = $(_LINK_)
+ cd src && .\msvcbuild.bat $(MSVCBUILD_OPTIONS)
+
+install: src\luajit.exe
+ -mkdir "$(INSTALLDIR)"
+ -mkdir "$(INSTALLDIR)\bin"
+ copy src\luajit.exe "$(INSTALLDIR)\bin\"
+ if exist src\lua51.dll copy src\lua51.dll "$(INSTALLDIR)\bin\"
+ -mkdir "$(INSTALLDIR)\lib"
+ copy src\lua51.lib "$(INSTALLDIR)\lib\"
+ -mkdir "$(INSTALLDIR)\include"
+ -mkdir "$(INSTALLDIR)\include\luajit"
+ copy src\lua.h "$(INSTALLDIR)\include\luajit\"
+ copy src\luajit.h "$(INSTALLDIR)\include\luajit\"
+ copy src\luaconf.h "$(INSTALLDIR)\include\luajit\"
+ copy src\lualib.h "$(INSTALLDIR)\include\luajit\"
+ copy src\lauxlib.h "$(INSTALLDIR)\include\luajit\"
+ copy src\lua.hpp "$(INSTALLDIR)\include\luajit\"