aboutsummaryrefslogtreecommitdiff
path: root/make-global-h.sh
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2014-10-06 07:57:49 -0400
committerKen Moore <moorekou@gmail.com>2014-10-06 07:57:49 -0400
commit9bd9f99eccc775e5fc3c1196c48a404c0c10c5e6 (patch)
treee031e5e8b0b362a33e5429fda2c18bfd4bbfa32c /make-global-h.sh
parentAdd the template for the new LuminaThemes library class (not integrated into ... (diff)
parentupdate debian/changelog (diff)
downloadlumina-9bd9f99eccc775e5fc3c1196c48a404c0c10c5e6.tar.gz
lumina-9bd9f99eccc775e5fc3c1196c48a404c0c10c5e6.tar.bz2
lumina-9bd9f99eccc775e5fc3c1196c48a404c0c10c5e6.zip
Merge pull request #14 from Nanolx/master
proper prefix handling
Diffstat (limited to 'make-global-h.sh')
-rwxr-xr-xmake-global-h.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/make-global-h.sh b/make-global-h.sh
new file mode 100755
index 00000000..f6457848
--- /dev/null
+++ b/make-global-h.sh
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+# create global.h
+
+echo "#ifndef PREFIX
+ #define PREFIX QString(\"${1}\")
+#endif" > global.h
bgstack15