Author Topic: Saving Property Sheets with Code::Blocks  (Read 2833 times)

Offline NightOfFear

  • Single posting newcomer
  • *
  • Posts: 5
Saving Property Sheets with Code::Blocks
« on: June 06, 2013, 03:39:02 am »
I am using Code::Blocks 10.05 on Debian 7.0.0.

Does Code::Blocks have a way of saving property sheets/settings so that one does not have to reenter the same list of search directories every time one builds a new program?

Thanks,
Peter.

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5930
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
Re: Saving Property Sheets with Code::Blocks
« Reply #1 on: June 06, 2013, 04:36:33 am »
Use the Menu:
Save project as template...
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.