Add theme example and minor addition to config

This commit is contained in:
2024-01-29 14:33:59 +01:00
parent 99207fe374
commit 027f0b18d6
8 changed files with 510 additions and 18 deletions

View File

@ -1,14 +0,0 @@
function doClang() {
export CC=clang
export CXX=clang++
}
function doGcc() {
export CC=gcc
export CXX=g++
}
function undoCompiler() {
unset CC
unset CXX
}

View File

@ -1,4 +0,0 @@
# Find the number of available cores and return variable NUMCPU
# You can use this i.e. to "make -j${NUMCPU}"
NUMCPU=$(getconf _NPROCESSORS_ONLN)