Hey!
Is there a way to make Project Builder automatically run project builds in the terminal rather than the run window? I ask because I'm writing a C++ database app for my Comp Sci class that uses the system("clear") call that only works when the application is running in the terminal.
Aditionally, is there a C++ call that lets you determine what OS your application is running on so I can have the app call system("cls") when it's running on a PC and system("clear") when it's running on OS X? Thanks!
-Joel