1
0
Fork 0

README.md: Add install instructions

This commit is contained in:
Xavier Del Campo Romero 2023-09-27 21:55:13 +02:00
parent 9315328983
commit 6a72955270
Signed by untrusted user: xavi
GPG Key ID: 84FF3612A9BF43F2
1 changed files with 17 additions and 0 deletions

View File

@ -83,6 +83,15 @@ slweb/libslweb.a:
+cd slweb && $(MAKE)
```
Additionally, `slweb` can be installed using the `install` target. A
custom prefix can be assigned via the `PREFIX` variable:
```sh
$ make PREFIX=$HOME/slweb-prefix install
```
By default, `PREFIX` is assigned to `/usr/local`.
#### CMake
```sh
@ -103,6 +112,14 @@ add_subdirectory(slweb)
target_link_libraries(${PROJECT_NAME} PRIVATE slweb)
```
Additionally, `slweb` can be installed using the standard procedure
in CMake. As usual, a custom prefix can be assigned via the
`CMAKE_INSTALL_PREFIX` variable:
```sh
$ cmake --install build/ -DCMAKE_INSTALL_PREFIX=$HOME/slweb-prefix
```
### Examples
[A directory](examples) with examples shows how `slweb` can be used by