- A tool for efficiently reverse engineering accurate UML class diagrams.
- The project uses srcSAX and srcSAXEventDispatch as submodules. The repo most be cloned with the
--recursiveoption to clone the submodules. The following is an example command:
git clone --recursive https://github.com/srcML/srcUML.gitThe 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- The current build is dependent on srcML 1.0 (not yet publicly released).