diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | k_cext_win.c | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -11,7 +11,7 @@ pd_nt: $(NAME).dll .SUFFIXES: .dll -PDNTCFLAGS = /W3 /DNT /DPD /nologo /DINCLUDEPATH=\"D:\\sourcescvs\\pd\" +PDNTCFLAGS = /W3 /WX /DNT /DPD /nologo /DINCLUDEPATH=\"D:\\sourcescvs\\pd\" PDNTINCLUDE = /I. /ID:\sourcescvs\pd\src PDNTLIB = libc.lib oldnames.lib kernel32.lib "C:\Pure Data\bin\pd.lib" diff --git a/k_cext_win.c b/k_cext_win.c index f48a8ff..0ed4e15 100644 --- a/k_cext_win.c +++ b/k_cext_win.c @@ -86,7 +86,7 @@ void k_sys_writeincludes(FILE *file){ } void k_sys_makecompilestring(char *to,char *name,char *funcname){ - sprintf(to,"cl %s " INCLUDEPATH "\\bin\\pd.lib " INCLUDEPATH "\\bin\\k_cext.lib /LD /Gd /GD /Ox /DNT /link /export:%s", + sprintf(to,"cl %s " INCLUDEPATH "\\bin\\pd.lib " INCLUDEPATH "\\extra\\k_cext.lib /LD /Gd /GD /Ox /DNT /link /export:%s", name, funcname); } |