aboutsummaryrefslogtreecommitdiffstats
path: root/src/config.h.in
diff options
context:
space:
mode:
authorLibravatar bigfoot547 <[email protected]>2023-11-16 17:44:47 -0600
committerLibravatar bigfoot547 <[email protected]>2023-11-16 17:44:47 -0600
commitff292c3477497e03d4cffc1467691e1e6ce54a5c (patch)
treeb7cd01d3f440dafd07bc7538c116997f7fd3ac01 /src/config.h.in
initial commit
Diffstat (limited to 'src/config.h.in')
-rw-r--r--src/config.h.in10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/config.h.in b/src/config.h.in
new file mode 100644
index 0000000..4e9f870
--- /dev/null
+++ b/src/config.h.in
@@ -0,0 +1,10 @@
+#mesondefine NCURSES_WIDE
+#mesondefine NCURSES_INCLUDE
+
+#ifdef NCURSES_WIDE
+#define NCURSES_TEXT(_s) L ## _s
+#else
+#define NCURSES_TEXT(_s) _s
+#endif
+
+#define NS(_s) NCURSES_TEXT(_s)