A systems control library for C++.
make config
make build
make test
Add to ~/.bashrc
, ~/.zshrc
or the config script of your terminal:
export CC=/path/to/gcc
export CXX=/path/to/g++
likely path: /usr/bin/
.
add the environment variables
setx CC "\path\to\gcc.exe"
setx CXX "\path\to\g++.exe"
likely path: C:\mingw64\bin\
or C:\Program Files\LLVM\bin\
.
Add to ~/.bashrc
, ~/.zshrc
or the config script of your terminal:
export CMAKE_GENERATOR="Ninja Multi-Config"
Add the environment variable
setx CMAKE_GENERATOR "Ninja Multi-Config"
Add to ~/.bashrc
, ~/.zshrc
or the config script of your terminal:
export CPM_SOURCE_CACHE=$HOME/.cache/CPM
Add the environment variable
setx CPM_SOURCE_CACHE "%USERPROFILE%\.cache\CPM"