Codeblocks screenshot

CodeBlocks is an open source Fortran IDE which runs on Linux and Windows.

The application does not directly allow you to import a CMake project. However, it is possible to do it in a few simple steps.

Check below the steps:

  1. # goto source project dir
  2. mkdir build
  3. cd build
  4. cmake -G”CodeBlocks – Unix Makefiles” ..

A new file is generated into yourproject/build/somefile.cbp. Finally,

  • Go to codeblocks application
  • Go to the menu, click File and open.
  • Select yourproject/build/somefile.cbp

Enjoy!

Source

Leave a Reply

Your email address will not be published. Required fields are marked *