This PR improves the CMakeLists.txt file in the master branch to be a full replacement for the configure.ac script. This is how you would "configure", build, test, and install using CMake:
The -GNinja option instructs CMake to produce build.ninja files instead of Makefiles to go with the Ninja build system, which is faster and more efficient than make.
Note that Memtailor and Mathic would need to be installed in the CMAKE_INSTALL_PREFIX first.
This PR improves the CMakeLists.txt file in the master branch to be a full replacement for the configure.ac script. This is how you would "configure", build, test, and install using CMake:
The
-GNinja
option instructs CMake to producebuild.ninja
files instead ofMakefiles
to go with the Ninja build system, which is faster and more efficient thanmake
.Note that Memtailor and Mathic would need to be installed in the
CMAKE_INSTALL_PREFIX
first.