feat: MontaukOS installer app, toml config, app directory with manifests, and more

This commit is contained in:
2026-03-08 12:06:29 +01:00
parent 4d0177d55e
commit 1edbec3c66
60 changed files with 3045 additions and 268 deletions
+2 -2
View File
@@ -74,14 +74,14 @@ OBJS := $(addprefix $(OBJDIR)/,$(SRCS:.cpp=.o))
# ---- Target ----
TARGET := $(BINDIR)/os/imageviewer.elf
TARGET := $(BINDIR)/apps/imageviewer/imageviewer.elf
.PHONY: all clean
all: $(TARGET)
$(TARGET): $(OBJS) $(LIBS) $(LINK_LD) Makefile
mkdir -p $(BINDIR)/os
mkdir -p $(BINDIR)/apps/imageviewer
$(CXX) $(CXXFLAGS) $(LDFLAGS) $(OBJS) $(LIBS) -o $@
$(OBJDIR)/%.o: %.cpp Makefile
+8
View File
@@ -0,0 +1,8 @@
[app]
name = "Image Viewer"
binary = "imageviewer.elf"
icon = "image-viewer.svg"
[menu]
category = "Applications"
visible = false