Skip to main content

Most Visited Blog

How to Install minGW C++ compiler for Windows - Cyborg Coding

How to Install and Configure Codelite for Windows - Cyborg Coding

DOWNLOAD 


* BEFORE DOWNLOADING IT MAKE SURE, YOU ALREADY INSTALL MinGW COMPILER.

1. Open Codelite

    • The following window will pop-up.

How to Install and Configure Codelite for Windows

2. Now click on Download button under navigation bar.

    • The following slide bar will open, now click on Stable / Lastest.

How to Install and Configure Codelite for Windows

    • The following window will pop-up.

How to Install and Configure Codelite for Windows

3. Now Click on Codelite 15.0 for Windows 64 bit Installer under Stable Release.
 Note: I have 64 bit windows , that's why I choose it. You have to choose according to your windows bit.
    
    Now it start downloading and installer is look like this 
                                                               How to Install and Configure Codelite for Windows

How to Install and Configure Codelite for Windows


INSTALLATION

4. Installing Codelite

How to Install and Configure Codelite for Windows

5. Click on I accept the agreement and then Next >.
    • The following window will pop-up.

How to Install and Configure Codelite for Windows
    
    • Here i'm installing Codelite in C:\ drive, you can choose any drive to install it. But I recommend you to install it in C:\ drive.

6. Click Next >.
    The following window will pop-up.

How to Install and Configure Codelite for Windows

7. Leave it as it is and Click on Next >.
    • The following window will pop-up.

How to Install and Configure Codelite for Windows
    
8. Now check the box and Click on Next >.
    • The following window will pop-up.

How to Install and Configure Codelite for Windows

9. Click on Install.
    • Following window will pop-up and it start installing Codelite in C:\ drive.

How to Install and Configure Codelite for Windows

10. Click on Finish.
    • Now Codelite is successfully installed on our system.

How to Install and Configure Codelite for Windows


SETTING UP CODELITE INTERFACE 


11. This is Codelite default interface.
    • Click Yes for bottom question and it will restart your Codelite software.  

How to Install and Configure Codelite for Windows

12. Click on Help under navigation bar.
    • Following slide bar will be shown up.

How to Install and Configure Codelite for Windows

13. Click on Run the Setup Wizard.
    • The following window will pop-up.

How to Install and Configure Codelite for Windows

14. Click on Next >.
    • The following window will pop-up, mark for C/C++ development.

How to Install and Configure Codelite for Windows

15. Click on Next >.
    • The following window will pop-up, we already install MinGW compiler so click on Scan.

How to Install and Configure Codelite for Windows

16. Click on Next >.
    • Following window will pop-up , showing MinGW compiler.

How to Install and Configure Codelite for Windows

17. Click on Next >.
    • The following window will pop-up.
    • Under Theme Select DARK theme.

How to Install and Configure Codelite for Windows

18. Click Next >
    • Following window will pop-up, leave it as it is.

How to Install and Configure Codelite for Windows

19. Click Finish.
    • Our Codelite is ready to use. 

CREATING WORKSHOP TO DO PROGRAMMING / TASK

20. Click on New Workshop.
    • Following window will pop-up. 

How to Install and Configure Codelite for Windows

21. Select C++ and then click on OK.
    • Following window will pop-up.

How to Install and Configure Codelite for Windows

22. Now we have to give name to our Workshop.
    • In my case I'm giving it name as FirstWorkshop.

How to Install and Configure Codelite for Windows

23. Click on OK.
    • Now it showing FirstWorkshop on left side column.

How to Install and Configure Codelite for Windows

24. Now we have to create our First Program.
    • For this Right click on FirstWorkshop then NewNew Project.
 
How to Install and Configure Codelite for Windows

25. We also have to give name to our Project. 
    • I'm giving it name as Demo.

How to Install and Configure Codelite for Windows

26. Now fill the following details as follow
    • Category: Console
    • Type: Simple Executable (g++)
    • Compiler: MinGW (C:\MinGW\bin\)
    • Debugger: GNU gdb debugger
    • Build System: Default

How to Install and Configure Codelite for Windows

27. Click on OK.
    • Following window will shown up, showing basic structure of C Language.

How to Install and Configure Codelite for Windows

28. Now we have to write basic program in C++.
    • Now it showing RED lines on left side of program that means our program is not save.
    • To SAVE to press CTRL + S or under File Section click SAVE.

How to Install and Configure Codelite for Windows

    • Now RED color will change into GREEN on saving it.

How to Install and Configure Codelite for Windows

29. Before running it we have to do somethings.
    • For this RIGHT click on DEMO project and then SETTINGS.

How to Install and Configure Codelite for Windows

     • Following window will pop-up.

How to Install and Configure Codelite for Windows

30. Click on Compiler under left side column.
    • Following window will pop-up.

How to Install and Configure Codelite for Windows

31. Click on three dotted box button under C++ Compiler Options.
    • Now check box for Enable C++ 17 features [-std=c++17] or Enable C++ 14 features [-std=c++14] but don't choose both. Click OK.

How to Install and Configure Codelite for Windows


33. We have to do one more setting, select Linker section from left side column.
    • Select Linker Options and write -static. 

How to Install and Configure Codelite for Windows

34. Click on APPLY then OK.

35. Now we are Ready to execute our program.
    • For this click on Build under navigation bar then RUN.

How to Install and Configure Codelite for Windows

    • Following tab will pop-up.

How to Install and Configure Codelite for Windows

36. Click on Build and Execute.
    • Now command prompt will pop-up, showing our output of the program that is "Hello Guys!".

How to Install and Configure Codelite for Windows


VIDEO





Comments