summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/cmake-integration.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/cmake-integration.md b/docs/cmake-integration.md
new file mode 100644
index 0000000..1b688e0
--- /dev/null
+++ b/docs/cmake-integration.md
@@ -0,0 +1,9 @@
+# Cmake targets
+
+The preferred way to include daw in your CMake project is to use `FetchContent`:
+```CMake
+FetchContent_Declare(daw
+ GIT_REPOSITORY https://github.com/0undefined/daw.git
+ GIT_TAG latest
+)
+```