README.md: Fix typo

Whereas the project is usually referred to as libweb, the CMake exported
target name is simply "web".
This commit is contained in:
Xavier Del Campo Romero 2024-02-12 23:10:38 +01:00
parent dd1589a5ea
commit 444563ca13
Signed by: xavi
GPG Key ID: 84FF3612A9BF43F2
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ to integrate `libweb` into CMake projects via `add_subdirectory` and
project(example)
add_executable(${PROJECT_NAME} main.c)
add_subdirectory(libweb)
target_link_libraries(${PROJECT_NAME} PRIVATE libweb)
target_link_libraries(${PROJECT_NAME} PRIVATE web)
```
Additionally, `libweb` can be installed using the standard procedure