From 7787631c6ee37a489732c95cb0864422e3a3bdd1 Mon Sep 17 00:00:00 2001 From: pixel Date: Sun, 12 Oct 2003 05:15:00 +0000 Subject: AT LAST!!! Windows 2k/XP CD reading works using raw ioctls!!!! HURRAY!!!!!!!! --- MSVC/Tools/Tools.vcproj | 12 ++++++++++++ MSVC/Tools/master.mak | 9 +++++---- 2 files changed, 17 insertions(+), 4 deletions(-) (limited to 'MSVC') diff --git a/MSVC/Tools/Tools.vcproj b/MSVC/Tools/Tools.vcproj index 2e2174b..a8c93ac 100644 --- a/MSVC/Tools/Tools.vcproj +++ b/MSVC/Tools/Tools.vcproj @@ -106,6 +106,9 @@ + + @@ -127,6 +130,15 @@ + + + + + + diff --git a/MSVC/Tools/master.mak b/MSVC/Tools/master.mak index 82a7f16..11ee305 100644 --- a/MSVC/Tools/master.mak +++ b/MSVC/Tools/master.mak @@ -48,9 +48,9 @@ _XSD=xsd.exe #define our basic link line for managed code !IFDEF DEBUG -_LINK=link.exe /INCREMENTAL /NOLOGO /DEBUG /SUBSYSTEM:CONSOLE /MACHINE:I386 /NODEFAULTLIB:LIBC +_LINK=link.exe /INCREMENTAL /NOLOGO /DEBUG /MACHINE:I386 /NODEFAULTLIB:LIBC USER32.LIB !ELSE -_LINK=link.exe /INCREMENTAL /NOLOGO /SUBSYSTEM:CONSOLE /MACHINE:I386 /NODEFAULTLIB:LIBCD +_LINK=link.exe /INCREMENTAL /NOLOGO /MACHINE:I386 /NODEFAULTLIB:LIBCD USER32.LIB !ENDIF #this is used for compiling C# samples @@ -134,8 +134,9 @@ _RMDIR=deltree /y .cpp.exe: if not exist $(_OUTDIR) md $(_OUTDIR) $(_CL) $(_CDFLAGS) $*.cpp - if not exist $*.res $(_LINK) $(_LFLAGS) $(_LIBS) $*.obj - if exist $*.res $(_LINK) $(_LFLAGS) $(_LIBS) $*.obj $*.res + if not exist $*.res $(_LINK) /SUBSYSTEM:CONSOLE $(_LFLAGS) $(_LIBS) $*.obj + if exist $*.res $(_LINK) /SUBSYSTEM:CONSOLE $(_LFLAGS) $(_LIBS) $*.obj $*.res + if exist $*.paq copy /b $*.exe+$*.paq $*.exe .lex.c: if not exist $(_OUTDIR) md $(_OUTDIR) -- cgit v1.2.3