J'ai ce source :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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 : Sélectionner tout - Visualiser dans une fenêtre à part
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