diff options
| author | 0scar <qgt268@alumni.ku.dk> | 2023-07-28 09:45:33 +0000 |
|---|---|---|
| committer | 0scar <qgt268@alumni.ku.dk> | 2023-07-28 10:30:42 +0000 |
| commit | 22db1a2e1b41bed7d5083ce68888a583881d58bf (patch) | |
| tree | b42b453e3911e49cec026929f81cbf5a289313b6 /docs/cmake-integration.md | |
| parent | 6c16f339224a4736f4ed57d15bb3e5f968a635ab (diff) | |
Flesh out cmakelists & streamline some functions
Diffstat (limited to 'docs/cmake-integration.md')
| -rw-r--r-- | docs/cmake-integration.md | 9 |
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 +) +``` |
