diff options
author | mascarenhas <mascarenhas> | 2006-12-04 15:28:53 +0000 |
---|---|---|
committer | mascarenhas <mascarenhas> | 2006-12-04 15:28:53 +0000 |
commit | 67c2187e9af4ca88aa864667a54502d01e01ddbd (patch) | |
tree | b2e4d3344eff8aa11e4113a6bab820d17985589f /config.win | |
parent | 5100f420b7e17298c973df021d0f9527739c6901 (diff) | |
download | luafilesystem-67c2187e9af4ca88aa864667a54502d01e01ddbd.tar.gz luafilesystem-67c2187e9af4ca88aa864667a54502d01e01ddbd.tar.bz2 luafilesystem-67c2187e9af4ca88aa864667a54502d01e01ddbd.zip |
Dropped Lua 5.0 support.
Diffstat (limited to 'config.win')
-rw-r--r-- | config.win | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/config.win b/config.win new file mode 100644 index 0000000..0259106 --- /dev/null +++ b/config.win | |||
@@ -0,0 +1,17 @@ | |||
1 | # Installation directories | ||
2 | # System's libraries directory (where binary libraries are installed) | ||
3 | LUA_LIBDIR= c:/lua51/lib | ||
4 | # Lua includes directory | ||
5 | LUA_INC= c:/lua51/include | ||
6 | # Lua library | ||
7 | LUA_LIB= c:/lua51/bin/lua51.lib | ||
8 | |||
9 | LIBNAME= $T.dll | ||
10 | |||
11 | # Compilation directives | ||
12 | WARN= /O2 /Wall | ||
13 | INCS= /I$(LUA_INC) | ||
14 | CFLAGS= $(WARN) $(INCS) | ||
15 | CC= cl | ||
16 | |||
17 | # $Id: config.win,v 1.1 2006/12/04 15:28:53 mascarenhas Exp $ | ||