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