First omp
This commit is contained in:
Executable
+22
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
|
||||
#---------------------------------------------------------------------------------------------------------------------------
|
||||
# CLEAN BUILD FILES
|
||||
#---------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
# Removes the CMake build folder.
|
||||
# This deletes compiled files, cached CMake settings, and the old executable.
|
||||
rm -rf build
|
||||
|
||||
#---------------------------------------------------------------------------------------------------------------------------
|
||||
# RECONFIGURE, REBUILD, AND RUN
|
||||
#---------------------------------------------------------------------------------------------------------------------------
|
||||
|
||||
# Forward all arguments to run.sh.
|
||||
#
|
||||
# Examples:
|
||||
# ./clean_run.sh
|
||||
# ./clean_run.sh omp
|
||||
# ./clean_run.sh omp 4
|
||||
./run.sh "$@"
|
||||
Reference in New Issue
Block a user