Files
clang-uml/README.md
Bartek Kryza 8ccd4bc81e Initial commit
2021-02-07 23:13:52 +01:00

26 lines
533 B
Markdown

# clang-uml - Clang based UML generator ![build](https://github.com/bkryza/clang-uml/workflows/build/badge.svg)
### Compiling, installing and running your code
To compile the project, run the following in the project root:
```
mkdir build
cd build
cmake ..
make
```
To install the project in `/usr/local/`, run the following in the `build/`
directory created above:
```
make install
```
To run unit tests via CTest, again run the following in the `build/` directory:
```
make test
```
or
```
ctest
```