0
exchange to exe ...
how can i exchange a cbp file to an exe file
3 Respuestas
+ 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]
+ 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.
+ 5
Compile the project under codeblocks, and use the exe generated in Release folder under bin folder in the project folder.