diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2024-02-12 23:10:38 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2024-02-12 23:12:43 +0100 |
| commit | 444563ca13a51069141d27f6f6f4b898d577193e (patch) | |
| tree | c63d8d3d0d5b8b9d8db132a0e8db68deffb46ced | |
| parent | dd1589a5ea5e8a244cfa51e19137a6ccb7ccb225 (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.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |
