diff options
| author | carregal <carregal> | 2008-02-19 22:07:42 +0000 |
|---|---|---|
| committer | carregal <carregal> | 2008-02-19 22:07:42 +0000 |
| commit | bb9cf83617a492d003debc0c140bcfaf598a63b5 (patch) | |
| tree | f98711a6e7e619c31ebb5dcfd27d3d61430b7d08 | |
| parent | c5bfbb1bd28daa49a0d6c136052aea109f314f85 (diff) | |
| download | luafilesystem-bb9cf83617a492d003debc0c140bcfaf598a63b5.tar.gz luafilesystem-bb9cf83617a492d003debc0c140bcfaf598a63b5.tar.bz2 luafilesystem-bb9cf83617a492d003debc0c140bcfaf598a63b5.zip | |
Correcting the use of the /MD flag
| -rw-r--r-- | config.win | 34 |
1 files changed, 17 insertions, 17 deletions
| @@ -1,17 +1,17 @@ | |||
| 1 | # Installation directories | 1 | # Installation directories |
| 2 | # System's libraries directory (where binary libraries are installed) | 2 | # System's libraries directory (where binary libraries are installed) |
| 3 | LUA_LIBDIR= c:\lua5.1 | 3 | LUA_LIBDIR= c:\lua5.1 |
| 4 | # Lua includes directory | 4 | # Lua includes directory |
| 5 | LUA_INC= c:\lua5.1\include | 5 | LUA_INC= c:\lua5.1\include |
| 6 | # Lua library | 6 | # Lua library |
| 7 | LUA_LIB= c:\lua5.1\lua5.1.lib | 7 | LUA_LIB= c:\lua5.1\lua5.1.lib |
| 8 | 8 | ||
| 9 | LIBNAME= $T.dll | 9 | LIBNAME= $T.dll |
| 10 | 10 | ||
| 11 | # Compilation directives | 11 | # Compilation directives |
| 12 | WARN= /O2 | 12 | WARN= /O2 |
| 13 | INCS= /I$(LUA_INC) | 13 | INCS= /I$(LUA_INC) |
| 14 | CFLAGS= $(WARN) $(INCS) | 14 | CFLAGS= /MD $(WARN) $(INCS) |
| 15 | CC= cl | 15 | CC= cl |
| 16 | 16 | ||
| 17 | # $Id: config.win,v 1.4 2007/05/18 19:52:59 carregal Exp $ | 17 | # $Id: config.win,v 1.5 2008/02/19 22:07:42 carregal Exp $ |
