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.

26 lines
504B

  1. #include <app/common.hpp>
  2. namespace rack {
  3. namespace app {
  4. const std::string APP_NAME = "VCV Rack";
  5. const std::string APP_VERSION = TOSTRING(VERSION);
  6. #if defined ARCH_WIN
  7. const std::string APP_ARCH = "win";
  8. #elif ARCH_MAC
  9. const std::string APP_ARCH = "mac";
  10. #elif defined ARCH_LIN
  11. const std::string APP_ARCH = "lin";
  12. #endif
  13. const std::string ABI_VERSION = "1";
  14. const std::string API_URL = "https://api.vcvrack.com";
  15. const std::string API_VERSION = "1";
  16. } // namespace app
  17. } // namespace rack