Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docs/getting_started/setup/linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,24 @@ You can also download the `crow_all.h` file and simply include that into your pr
the `CROW_ENABLE_SSL` variable to enable the support for https
the `CROW_ENABLE_COMPRESSION` variable to enable the support for http compression

!!! note

By default, Crow sets `CROW_ENABLE_SSL=true` and `CROW_ENABLE_COMPRESSION=true` for CMake builds. You must call `find_package` and manually link with these libraries in your build if you keep these defaults.


```
find_package(OpenSSL REQUIRED)
find_package(ZLIB REQUIRED)

target_link_libraries(main
PRIVATE
OpenSSL::SSL
OpenSSL::Crypto
ZLIB::ZLIB
Crow::Crow
)
```

!!! note

You can uninstall Crow at a later time using `make uninstall`.
Expand Down
Loading