Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Version 11 (modified by nicolasc, 16 years ago) (diff)

TracNav(TracNav/TOC_Coding)?

CMake Build System

Using CMake with KDevelop

CMake is capable of creating .kdevelop files, which are used as project files in (guess where) KDevelop. To create them simply use the following command

cmake . -GKDevelop3

Optimize KDevelop

Do some configursation to make the usage of KDevelop smoother

Go to Project->Project Option->Build Option->Make, and do the following changes

  • Select Run Multiple Jobs, and set Number of Simultaneous Jobs to 3
  • set Make Prority to 5
  • Optional: Add Environment Variables
    • i.e Name: CXXFLAGS; Value: -O2 -pipe
    • CXXFLAGS or LDFLAGS are also possible. In fact any compiler flags can be set here
      If you don't know what CFLAGS are, don't set them, otherwise use at you own discretion. Only reasonable falgs will be supported

Go to Project->Project Option->Run Option

  • Working Directory: just add /bin you still need to run ./run-script the first time