You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Vlad Gheorghiu edited this page Jan 25, 2022
·
2 revisions
Linux/UNIX
staq uses CMake for its build system. To build both tool suite and the staq executable, execute under the root directory
mkdir build &&cd build
cmake ..
make -j8
To build only the staq tool suite, from the build directory, enter
make -j8 tools. To build only the staq executable, type make -j8 staq
Unit tests can be built with the command make -j8 unit_tests.
To (un)install, type
sudo make (un)install
Windows
Building on Windows requires Visual Studio 2017
or later for cmake support. In Visual Studio, open
CMakeLists.txt
as a cmake project, then simply build as a regular Visual Studio project or,
from a Developer Command Prompt, execute under the root directory