The JUCE cross-platform C++ framework, with DISTRHO/KXStudio specific changes
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.

24 lines
685B

  1. // Auto-links to various win32 libs that are needed by library calls..
  2. #pragma comment(lib, "kernel32.lib")
  3. #pragma comment(lib, "user32.lib")
  4. #pragma comment(lib, "shell32.lib")
  5. #pragma comment(lib, "gdi32.lib")
  6. #pragma comment(lib, "vfw32.lib")
  7. #pragma comment(lib, "comdlg32.lib")
  8. #pragma comment(lib, "winmm.lib")
  9. #pragma comment(lib, "wininet.lib")
  10. #pragma comment(lib, "ole32.lib")
  11. #pragma comment(lib, "advapi32.lib")
  12. #pragma comment(lib, "ws2_32.lib")
  13. #pragma comment(lib, "comsupp.lib")
  14. #if JUCE_OPENGL
  15. #pragma comment(lib, "OpenGL32.Lib")
  16. #pragma comment(lib, "GlU32.Lib")
  17. #endif
  18. #if JUCE_QUICKTIME
  19. #pragma comment (lib, "QTMLClient.lib")
  20. #endif