From: Marek P. <ma...@us...> - 2002-07-17 04:34:11
|
Update of /cvsroot/javaprofiler/library/src/setup In directory usw-pr-cvs1:/tmp/cvs-serv3513/src/setup Modified Files: setup.cpp Log Message: information about release/debug version added Index: setup.cpp =================================================================== RCS file: /cvsroot/javaprofiler/library/src/setup/setup.cpp,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -r1.11 -r1.12 *** setup.cpp 15 Jul 2002 21:55:13 -0000 1.11 --- setup.cpp 17 Jul 2002 04:34:07 -0000 1.12 *************** *** 88,91 **** --- 88,98 ---- cout << endl << "Java Profiling Tool - dynamic profiling library" << endl; cout << "http://javaprofiler.sourceforge.net/" << endl; + + #ifndef _DEBUG + cout << "release version, "; + #else + cout << "debug version, "; + #endif + cout << "build: " << __DATE__ << " " << __TIME__ << endl << endl; cout << "analyzing arguments..." << endl; |