Skip to content

Commit

Permalink
Add uninstall target in cmake
Browse files Browse the repository at this point in the history
  • Loading branch information
dota17 committed Feb 27, 2020
1 parent 30e00cf commit 1160c86
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CMakeLists.txt
Expand Up @@ -335,6 +335,12 @@ else (DOXYGEN_FOUND)
message("Doxygen need to be installed to generate the doxygen documentation")
endif(DOXYGEN_FOUND)

# uninstall
add_custom_target(uninstall
COMMAND cat ${PROJECT_BINARY_DIR}/install_manifest.txt | xargs rm -rf
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
)

# XXX for a normal full distribution we'll need to figure out
# XXX how to build both shared and static libraries.
# Probably leverage that to build a local VALGRIND=1 library for testing too.
Expand Down
7 changes: 6 additions & 1 deletion README.md
Expand Up @@ -230,7 +230,7 @@ JSONC_TEST_TRACE=1 make test
```
and check the log files again.

To get doxygen documentation
To get doxygen documentation:

The libray documentation can be generated directly from the source codes using Doxygen tool:

Expand All @@ -239,6 +239,11 @@ make doc
google-chrome ../doc/html/index.html
```

To uninstall:

```sh
make uninstall
```

Linking to `libjson-c` <a name="linking">
----------------------
Expand Down

0 comments on commit 1160c86

Please sign in to comment.