Skip to content

Instantly share code, notes, and snippets.

View Taara-Sinh-Aatrey's full-sized avatar

Taara Sinh Aatrey Taara-Sinh-Aatrey

  • PDPM IIITDMJ
  • Jabalpur
View GitHub Profile
@Taara-Sinh-Aatrey
Taara-Sinh-Aatrey / C++ (Fast Olympic Coding).sublime-build
Last active October 14, 2021 09:18
A custom target to run fast olympic coding after the build finishes successfully. Allows user to have a complex build system (for example: having multiple variants) along with the functionality of running fast olympic coding. The run_settings of FastOlympicCoding.sublime-settings file have fewer options compared to what a build system offers. So…
// put this file in your User package
// Preferences -> Browse Packages -> User
// Feel free to modify this as per your usage
{
"target": "fast_olympic_coding_on_finish",
"cancel": {"kill": true},
// Start: Slow Compile And Run
"osx": {
"shell_cmd": "g++-11 -std=c++17 -Wshadow -Wall \"${file_name}\" -o \"${file_base_name}\".out -DLOCAL -g -D_GLIBCXX_DEBUG",