srcML / srcUML

UML Class diagram reverse engineering tool
GNU General Public License v3.0
14 stars 5 forks source link

srcUML

Cloning

Build

The project utilizes CMake for building. The following provide examples of how to build. srcuml will be placed in the ./bin directory in all cases.

# in-source build
cmake .
make

# out-of-source build
mkdir srcuml_build
cd srcuml_build
cmake path_to_srcUML_repo
make

# release mode
mkdir srcuml_build
cd srcuml_build
cmake -DCMAKE_BUILD_TYPE=Release path_to_srcUML_repo
make

Note