So the questions is how do I compile Maidsafe with CodeBlocks? And the following is the correct way from Prakash.
1 Like
Have you tried below steps ? I just installed CodeBlocks and followed below steps to build the project:
Created a separate build folder in root dir (MaidSafe) say build_codeblocks
mkdir build_codeblockscd build_codeblocks
cmake … -G"CodeBlocks - Unix Makefiles"
After this I could open the solution (maidsafe.cbp) with codeblocks.
Once you see its building, then you can start
changing CMakeLists.txt to make your changes and configure each time
before building.