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..6fe6a1a 100644
--- a/src/main.c
+++ b/src/main.c
@@ -13,6 +13,9 @@
#ifdef LUTRIS_ENABLED
#include "lutris.h"
#endif
+#ifdef BOTTLES_ENABLED
+#include "bottles.h"
+#endif
#include "common.h"
#include "config.h"
@@ -33,6 +36,9 @@ static const struct Command main_commands[] = {
#ifdef LUTRIS_ENABLED
{ .name = "lutris", .func = lutris, .description = "run lutris instraller"},
#endif
+#ifdef BOTTLES_ENABLED
+ { .name = "bottles", .func = bottles, .description = "run bottles instraller"},
+#endif
{ .name = "env", .func = main_env, .description = "show some information about polecat" },
};