generated from sigonasr2/CPlusPlusProjectTemplate
8 lines
269 B
Bash
Executable File
8 lines
269 B
Bash
Executable File
#Creates a release build that focuses on high runtime performance.
|
|
#C++
|
|
printf "Running program...\n\n\n"
|
|
if g++ $(find . -type f -name "*.cpp" -not -path "./test/*") ${CUSTOM_PARAMS} -O3 -s -DNDEBUG -o ${PROJECT_NAME}; then
|
|
./${PROJECT_NAME} "$@"
|
|
fi
|
|
printf "\n\n"
|