SeasonI/C++/scripts/release.sh
sigonasr2 3d5d1a126e Shop sell features implemented
Co-authored-by: sigonasr2 <sigonasr2@gmail.com>
2022-10-24 00:34:30 -05:00

8 lines
269 B
Bash

#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"