exchange to exe ... | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

exchange to exe ...

how can i exchange a cbp file to an exe file

12th Oct 2017, 7:57 AM
hbagheri
hbagheri - avatar
3 Answers
+ 16
Description of the format: .cbp file is a project file created by Code::Blocks, a free, cross-platform IDE for C++ development; saved in an XML format and contains build settings, compiler properties, and references to project source code files; used for saving development projects. [https://fileinfo.com/extension/cbp] A nice tutorial about installing and using Code::Blocks in your PC machine. [https://www.ntu.edu.sg/home/ehchua/programming/howto/CodeBlocks_HowTo.html] A common problem in the process of build and compile phase to get .exe file. [https://stackoverflow.com/questions/8450121/how-do-i-create-a-exe-from-a-cpp-file-in-code-blocks]
12th Oct 2017, 8:25 AM
Babak
Babak - avatar
+ 7
yes kinshuk is right after you compile your program, the .exe and .obj with the same file name is created. you can copy that and then you can distribute it. it will run on double click.
12th Oct 2017, 10:09 AM
Sandeep Chatterjee
+ 5
Compile the project under codeblocks, and use the exe generated in Release folder under bin folder in the project folder.
12th Oct 2017, 10:00 AM
Kinshuk Vasisht
Kinshuk Vasisht - avatar