aboutsummaryrefslogtreecommitdiffstats
path: root/lualdap/config.win
diff options
context:
space:
mode:
authorLeonardo Godinho <godinho@luaforge.net>2007-03-06 00:34:14 +0000
committerLeonardo Godinho <godinho@luaforge.net>2007-03-06 00:34:14 +0000
commita0f4360cefdc8de1c9f2bba694d1a4aaf234bd5d (patch)
treef1a32c91374809277aac8a59e0a416eb4dddc6fd /lualdap/config.win
parentUpdating to run also on Lua 5.1.1 (diff)
downloadlualdap-a0f4360cefdc8de1c9f2bba694d1a4aaf234bd5d.tar.xz
lualdap-a0f4360cefdc8de1c9f2bba694d1a4aaf234bd5d.zip
VC 8 Makefile support
Diffstat (limited to 'lualdap/config.win')
-rwxr-xr-xlualdap/config.win21
1 files changed, 21 insertions, 0 deletions
diff --git a/lualdap/config.win b/lualdap/config.win
new file mode 100755
index 0000000..bdb39aa
--- /dev/null
+++ b/lualdap/config.win
@@ -0,0 +1,21 @@
+# Installation directories
+# System's libraries directory (where binary libraries are installed)
+LUA_LIBDIR= e:\leonardo\dev\kepler1.1\lua511
+# Lua includes directory
+LUA_INC= e:\leonardo\dev\kepler1.1\lua511\include
+# Lua library
+LUA_LIB= e:\leonardo\dev\kepler1.1\lua511\lua5.1.lib
+# OpenLDAP includes directory
+OPENLDAP_INC= e:\leonardo\dev\openldap-2.1.17_bin\include
+# OpenLDAP library
+OPENLDAP_LIB= e:\leonardo\dev\openldap-2.1.17_bin\DLLRelease\openldap.lib
+
+
+LIBNAME= $T.dll
+
+# Compilation directives
+WARN= /O2
+INCS= /I$(LUA_INC) /I$(OPENLDAP_INC)
+CFLAGS= $(WARN) $(INCS) -DWIN32
+CC= cl
+