-
Notifications
You must be signed in to change notification settings - Fork 8
Home
Tristan Grimmer edited this page Oct 3, 2020
·
9 revisions
This wiki is currently acting as a scratchpad for Tacent installation instruction including environment setup, configuring with CMake, building and installing.
sudo apt-get install clang
sudo apt-get install ninja-build
sudo apt-get install libx11-dev
Got VS Code Insiders from snap store. If you want to use Clang:
update-alternatives --config c++ # Choose clang
update-alternatives --config cc # Choose clang
# mkdir etc.
cmake .. -GNinja
cmake .. -GNinja -DCMAKE_BUILD_TYPE=Debug
ninja install
ninja -v install
cmake .. -GNinja -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_COMPILER=clang -DCMAKE_C_COMPILER=clang