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.
|
- #include <app/common.hpp>
-
-
- namespace rack {
- namespace app {
-
-
- const std::string APP_NAME = "VCV Rack";
- const std::string APP_VERSION = TOSTRING(VERSION);
- #if defined ARCH_WIN
- const std::string APP_ARCH = "win";
- #elif ARCH_MAC
- const std::string APP_ARCH = "mac";
- #elif defined ARCH_LIN
- const std::string APP_ARCH = "lin";
- #endif
-
- const std::string ABI_VERSION = "1";
-
- const std::string API_URL = "https://api.vcvrack.com";
- const std::string API_VERSION = "1";
-
-
- } // namespace app
- } // namespace rack
|