summaryrefslogtreecommitdiff
path: root/docs/cmake-integration.md
blob: 1b688e08b3200cc69b54c69f82a4ce18a23f89d9 (plain)
1
2
3
4
5
6
7
8
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
)
```