summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..07423b9
--- /dev/null
+++ b/README.md
@@ -0,0 +1,25 @@
+# goodies
+Some good snippets for qt
+
+# per-project usage
+
+## qmake
+
+Add this to your .pro-file:
+
+```pro
+include(path_to_this_repo/goodies.pri)
+```
+
+## cmake
+
+```cmake
+add_subdirectory(goodies)
+...
+target_link_libraries(${PROJECT_NAME}
+ PRIVATE
+ ...
+ Qt::Widgets
+ goodies
+)
+```