Do you use a type of define'd flag system for your projects?
Posted: Sun May 13, 2007 3:40 pm
I have realized that I use a #define'd system for configuration, the thing that's weird, is I have two of these flags in common with nearly every project I make..
one is
"LOW_MEMORY" which when defined will attempt to conserve memory at all costs
and then I got "SPEED_UP" which when defined will use potentially unsafe optimizations; also, it will attempt to do more caching and will optimize for CPU time fastness...this bascially doesn't go along with LOW_MEMORY, but anyway...
does anyone else do things this way for every project?
one is
"LOW_MEMORY" which when defined will attempt to conserve memory at all costs
and then I got "SPEED_UP" which when defined will use potentially unsafe optimizations; also, it will attempt to do more caching and will optimize for CPU time fastness...this bascially doesn't go along with LOW_MEMORY, but anyway...
does anyone else do things this way for every project?