I need to profile my console program with AQ. It is in one big file (for optimizations purposes).
void function1();
void function2()
// etc more declarations
int main{
//alot of loops, and function uses
function1();
function1();
}
Profiling on "Elapsed time" default profile just gives me that main is using 100% and that it took 40sec to do its job. Nothing on how much time the functions that were called inside the main took time, only how many times they were called, which says nothing.
Am I missing something in configuring AQtime as I cant find it? Would like to get how much time the functions took time to do it's job..