Add many scripts
Add many scripts Signed-off-by: Bensuperpc <bensuperpc@gmail.com>pull/2/head
parent
4c17dcef2d
commit
f2848b9542
@ -0,0 +1 @@
|
||||
Subproject commit 77d39c1bc30fd04906f745883070d40d3cf0fed4
|
@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
set -euo pipefail
|
||||
#
|
||||
# make.sh - Make ben libs
|
||||
#
|
||||
# Created by Bensuperpc at 6, October of 2020
|
||||
# Modified by Bensuperpc at 17, June of 2021
|
||||
#
|
||||
# Released into the Public domain with MIT licence
|
||||
# https://opensource.org/licenses/MIT
|
||||
#
|
||||
# Written with VisualStudio code 1.49.1
|
||||
# Script compatibility : Linux and Windows
|
||||
#
|
||||
# ==============================================================================
|
||||
|
||||
#https://developers.redhat.com/blog/2019/05/15/2-tips-to-make-your-c-projects-compile-3-times-faster/
|
||||
|
||||
mkdir -p build
|
||||
#Release/Debug/Coverage/MinSizeRel
|
||||
# #-DCMAKE_BUILD_TYPE=Release
|
||||
|
||||
cmake -S . -B build -G Ninja -DCMAKE_CXX_COMPILER_LAUNCHER="ccache;distcc" -DCMAKE_C_COMPILER_LAUNCHER="ccache;distcc" $@
|
||||
|
||||
ninja -C build
|
@ -0,0 +1 @@
|
||||
Subproject commit cada2fdd3be9ce6e0001a1b78f335940a8d07d85
|
Loading…
Reference in New Issue