Conditions at Compile time

  • Thread starter Thread starter Yosi
  • Start date Start date
Y

Yosi

Hi,
I wondering if there is any whay to add some conditions to
my code which used on the compile run time,
as on C++/C
"
#ifdef DEBUG
UI ui("AppDBG> ");
#else
UI ui("App> ");
#endif
"
 
Back
Top