Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
1.0 KiB

  1. !ifndef MIFAULT_ROOT
  2. !error MIFAULT_ROOT must be defined before including this file.
  3. !endif
  4. # COM #import support
  5. _MIFAULT_COM_IMPORT_LIBS=\
  6. $(SDK_LIB_PATH)\ole32.lib \
  7. $(SDK_LIB_PATH)\oleaut32.lib \
  8. $(SDK_LIB_PATH)\user32.lib \
  9. $(SDK_LIB_PATH)\vccomsup.lib
  10. # VC7 compiler support for throw an exception on failure of new
  11. _MIFAULT_THROW_NEW_LIBS=\
  12. $(SDK_LIB_PATH)\thrownew.obj
  13. # Need the .res file that contains our schemas...
  14. #_MIFAULT_RES=\
  15. # $(MIFAULT_ROOT)\src\lib\$(O)\mifault.res
  16. MIFAULT_LIB=\
  17. $(MIFAULT_ROOT)\src\$(O)\mifault.lib
  18. _MIFAULT_INC_PATH=$(MIFAULT_ROOT)\inc
  19. # The good stuff
  20. MIFAULT_TARGETLIBS=\
  21. $(_MIFAULT_COM_IMPORT_LIBS) \
  22. $(_MIFAULT_THROW_NEW_LIBS) \
  23. $(SDK_LIB_PATH)\shlwapi.lib
  24. MIFAULT_LINKLIBS=\
  25. $(_MIFAULT_LIB) \
  26. $(_MIFAULT_RES) \
  27. $(MAGELLAN_LIB_PATH)\InjRT.lib
  28. MIFAULT_INC_PATH=$(MAGELLAN_INC_PATH);$(_MIFAULT_INC_PATH)
  29. USE_STL=1
  30. USE_NATIVE_EH=1
  31. USE_MSVCRT=1