aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c
index 67f99db..a1b0577 100644
--- a/src/main.c
+++ b/src/main.c
@@ -7,6 +7,9 @@
#ifdef WINE_ENABLED
#include "wine.h"
#endif
+#ifdef PROTON_ENABLED
+#include "proton.h"
+#endif
#ifdef DXVK_ENABLED
#include "dxvk.h"
#endif
@@ -27,6 +30,9 @@ static const struct Command main_commands[] = {
#ifdef WINE_ENABLED
{ .name = "wine", .func = winecmd, .description = "manage wine versions" },
#endif
+#ifdef PROTON_ENABLED
+ { .name = "proton", .func = proton, .description = "manage Proton installations" },
+#endif
#ifdef DXVK_ENABLED
{ .name = "dxvk", .func = dxvk, .description = "manage DXVK versions" },
#endif