libraries.h 705 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Name: wx/msw/libraries.h
  3. * Purpose: Pragmas for linking libs conditionally
  4. * Author: Michael Wetherell
  5. * Modified by:
  6. * Copyright: (c) 2005 Michael Wetherell
  7. * Licence: wxWindows licence
  8. */
  9. #ifndef _WX_MSW_LIBRARIES_H_
  10. #define _WX_MSW_LIBRARIES_H_
  11. /*
  12. * Notes:
  13. *
  14. * In general the preferred place to add libs is in the bakefiles. This file
  15. * can be used where libs must be added conditionally, for those compilers that
  16. * support a way to do that.
  17. */
  18. /* VC++ 5 didn't include oleacc.lib, though it came with the PSDK */
  19. #if defined __VISUALC__ && (wxUSE_ACCESSIBILITY || __VISUALC__ >= 1200)
  20. #pragma comment(lib, "oleacc")
  21. #endif
  22. #endif /* _WX_MSW_LIBRARIES_H_ */