Forcer directive de compilation dans 'Sources' (build.exe)
J'ai ce source :
Code:
1 2 3 4 5 6 7 8 9
|
#ifdef SUPPORTRAWDISK
#define MyDbgPrint(...) DbgPrint ("[VDRS] " __VA_ARGS__);
#else
#ifdef FILESYSD
#define MyDbgPrint(...) DbgPrint ("[VDFS] " __VA_ARGS__);
#endif
#endif |
Et je voudrais le compiler avec l'utilitaire build.exe en forcant la directive de compilation FILESYSD
Code:
1 2 3 4 5 6 7
| TARGETNAME=vfums
TARGETPATH=obj\$(DDKBUILDENV)
TARGETTYPE=DRIVER
TARGETLIBS=$(DDK_LIB_PATH)\wdmsec.lib
FILESYSD=1
INCLUDES=.
SOURCES=callmgr.c cdf.c |
Et ca ne marche pas
Comment on fait ?
Merci