aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorJan200101 <sentrycraft123@gmail.com>2021-11-07 17:12:19 +0100
committerJan200101 <sentrycraft123@gmail.com>2022-05-05 11:07:51 +0200
commit56583b3b1befdf9118a2595afa212636b17a7672 (patch)
treec34efc448f8871d7e9700139239ade583a30205a /src/main.c
parentf622bf41dbc584dd17e6cfd1f1dc7bbe4250d098 (diff)
downloadpolecat-56583b3b1befdf9118a2595afa212636b17a7672.tar.gz
polecat-56583b3b1befdf9118a2595afa212636b17a7672.zip
basic bottles supportdev-bottles
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" },
};