aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2024-02-12 23:10:38 +0100
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2024-02-12 23:12:43 +0100
commit444563ca13a51069141d27f6f6f4b898d577193e (patch)
treec63d8d3d0d5b8b9d8db132a0e8db68deffb46ced
parentdd1589a5ea5e8a244cfa51e19137a6ccb7ccb225 (diff)
README.md: Fix typo
Whereas the project is usually referred to as libweb, the CMake exported target name is simply "web".
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 0c6c585..7d18ee2 100644
--- a/README.md
+++ b/README.md
@@ -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