cleanup: rename shared libraries to remove 'lib' prefix
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
[applets.printers]
|
||||
label = "Printers"
|
||||
library = "0:/os/libprintersapplet.lib"
|
||||
library = "0:/os/printersapplet.lib"
|
||||
icon = "0:/icons/printer.svg"
|
||||
enabled = true
|
||||
|
||||
[applets.network]
|
||||
label = "Network"
|
||||
library = "0:/os/libnetworkapplet.lib"
|
||||
library = "0:/os/networkapplet.lib"
|
||||
icon = "0:/icons/network-wired.svg"
|
||||
enabled = true
|
||||
|
||||
[applets.timezone]
|
||||
label = "Time Zone"
|
||||
library = "0:/os/libtimezonesapplet.lib"
|
||||
library = "0:/os/timezonesapplet.lib"
|
||||
icon = "0:/icons/preferences-system-time.svg"
|
||||
enabled = true
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
|
||||
namespace gui::dialogs {
|
||||
|
||||
inline constexpr const char* LIBRARY_PATH = "0:/os/libdialogs.lib";
|
||||
inline constexpr const char* LIBRARY_PATH = "0:/os/dialogs.lib";
|
||||
inline constexpr const char* RUN_REQUEST_SYMBOL = "dialogs_run_request";
|
||||
inline constexpr const char* MESSAGE_BOX_SYMBOL = "dialogs_message_box";
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@ endif
|
||||
|
||||
OUTDIR := ../../bin/os
|
||||
OBJDIR := obj
|
||||
TARGET := $(OUTDIR)/libnetworkapplet.lib
|
||||
TARGET := $(OUTDIR)/networkapplet.lib
|
||||
|
||||
CXXFLAGS := \
|
||||
-std=gnu++20 \
|
||||
|
||||
@@ -15,7 +15,7 @@ endif
|
||||
|
||||
OUTDIR := ../../bin/os
|
||||
OBJDIR := obj
|
||||
TARGET := $(OUTDIR)/libprintersapplet.lib
|
||||
TARGET := $(OUTDIR)/printersapplet.lib
|
||||
|
||||
CXXFLAGS := \
|
||||
-std=gnu++20 \
|
||||
|
||||
@@ -15,7 +15,7 @@ endif
|
||||
|
||||
OUTDIR := ../../bin/os
|
||||
OBJDIR := obj
|
||||
TARGET := $(OUTDIR)/libtimezonesapplet.lib
|
||||
TARGET := $(OUTDIR)/timezonesapplet.lib
|
||||
|
||||
CXXFLAGS := \
|
||||
-std=gnu++20 \
|
||||
|
||||
@@ -91,7 +91,7 @@ SRCS := main.cpp filedialog.cpp printdialog.cpp messagebox.cpp stb_truetype_impl
|
||||
OBJS := $(addprefix $(OBJDIR)/,$(SRCS:.cpp=.o))
|
||||
LIBC_PIC_OBJ := $(OBJDIR)/libc_pic.o
|
||||
|
||||
TARGET := $(LIBOUTDIR)/libdialogs.lib
|
||||
TARGET := $(LIBOUTDIR)/dialogs.lib
|
||||
|
||||
.PHONY: all clean
|
||||
|
||||
|
||||
Reference in New Issue
Block a user