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.

30 lines
583B

  1. #ifdef JUCE_USER_DEFINED_RC_FILE
  2. #include JUCE_USER_DEFINED_RC_FILE
  3. #else
  4. #undef WIN32_LEAN_AND_MEAN
  5. #define WIN32_LEAN_AND_MEAN
  6. #include <windows.h>
  7. VS_VERSION_INFO VERSIONINFO
  8. FILEVERSION 1,0,0,0
  9. BEGIN
  10. BLOCK "StringFileInfo"
  11. BEGIN
  12. BLOCK "040904E4"
  13. BEGIN
  14. VALUE "FileDescription", "OpenGLAppExample\0"
  15. VALUE "FileVersion", "1.0.0\0"
  16. VALUE "ProductName", "OpenGLAppExample\0"
  17. VALUE "ProductVersion", "1.0.0\0"
  18. END
  19. END
  20. BLOCK "VarFileInfo"
  21. BEGIN
  22. VALUE "Translation", 0x409, 1252
  23. END
  24. END
  25. #endif