aboutsummaryrefslogtreecommitdiff
path: root/config.win
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2020-04-21 18:41:55 -0300
committerHisham Muhammad <hisham@gobolinux.org>2020-04-21 18:41:55 -0300
commit4f7e1b5a49575c77657b77bea383f79cddd768e3 (patch)
treee8f669be9eed7fd1bca2a6eb6f04d17646bbb47a /config.win
parenta5336d294d27f98c38394b6ea441e68bab96bdc8 (diff)
downloadluafilesystem-4f7e1b5a49575c77657b77bea383f79cddd768e3.tar.gz
luafilesystem-4f7e1b5a49575c77657b77bea383f79cddd768e3.tar.bz2
luafilesystem-4f7e1b5a49575c77657b77bea383f79cddd768e3.zip
Makefile: make it easier to switch Lua versions
Diffstat (limited to '')
-rw-r--r--config.win10
1 files changed, 5 insertions, 5 deletions
diff --git a/config.win b/config.win
index 50e81f6..6aeaa60 100644
--- a/config.win
+++ b/config.win
@@ -1,14 +1,14 @@
1LUA_VERSION= 5.1
2
1# Installation directories 3# Installation directories
2# System's libraries directory (where binary libraries are installed) 4# System's libraries directory (where binary libraries are installed)
3LUA_LIBDIR= "c:\lua5.1" 5LUA_LIBDIR= "c:\lua$(LUA_VERSION)"
4 6
5# Lua includes directory 7# Lua includes directory
6LUA_INC= "c:\lua5.1\include" 8LUA_INC= "c:\lua$(LUA_VERSION)\include"
7 9
8# Lua library 10# Lua library
9LUA_LIB= "c:\lua5.1\lua5.1.lib" 11LUA_LIB= "c:\lua$(LUA_VERSION)\lua$(LUA_VERSION).lib"
10
11LIBNAME= $T.dll
12 12
13# Compilation directives 13# Compilation directives
14WARN= /O2 14WARN= /O2