VCV Rack API
v2
Loading...
Searching...
No Matches
arch.hpp
Go to the documentation of this file.
1
#pragma once
2
3
// Check CPU
4
#if defined __x86_64__
5
#define ARCH_X64 1
6
#endif
7
#if defined __aarch64__
8
#define ARCH_ARM64 1
9
#endif
10
11
// Check OS
12
#if defined _WIN32
13
#define ARCH_WIN 1
14
#endif
15
#if defined __APPLE__
16
#define ARCH_MAC 1
17
#endif
18
#if defined __linux__
19
#define ARCH_LIN 1
20
#endif
include
arch.hpp
Generated by
1.12.0