Difference between revisions of "Linking the plugin to a Nightly Build"

From Code::Blocks
m (reworded introduction: TODO steps 2 and 3 with screens)
Line 1: Line 1:
 
[[Category:Plugin development]]
 
[[Category:Plugin development]]
 
'''Work in Progress!!!'''<br /><br />
 
'''Work in Progress!!!'''<br /><br />
This article describes how to link your plugin against the dll's shipped with codeblocks on windows.
+
This article describes how to assemble your plugin to work with officially released Code::Blocks distribution (either nightly or not) on Windows. It's accomplished by linking your plugin against the DLL's shipped with Code::Blocks.
  
 
=Introduction=
 
=Introduction=
Is useful to know how to compile Code::Blocks sources from scratch to link with our plugin, but when we want to share it with the community then we need to link it against the latest nightly build or final release of codeblocks. This is a simple procedure that many people doesn't know at first, and that will help you accelerate development in many ways. Enjoy :)
+
Is useful to know how to compile Code::Blocks sources from scratch to link with our plugin, but when we want to share it with the community then we need to link it against the latest nightly build or final release of Code::Blocks. This is a simple procedure that many people don't know at first. Enjoy :)
  
 
=Procedure=
 
=Procedure=
Here are the instructions divided in steps for the easy navigation of our eyes.
 
  
 
====Step One====
 
====Step One====
Download and install the latest nightly found on this forum /index.php/board,20.0.html Also you will need the Code::Blocks SDK so checkout the sources on berlios.de using svn.
+
Download and install Code::Blocks release to link your plugin with. You may choose either official release available from https://www.codeblocks.org/downloads/5 or latest nightly from this forum - /index.php/board,20.0.html You will also need the Code::Blocks SDK sources to build your plugin, so checkout them from [https://www.codeblocks.org/downloads/7 SVN] if you haven't done this already.
  
 
====Step Two====
 
====Step Two====

Revision as of 16:20, 10 September 2008

Work in Progress!!!

This article describes how to assemble your plugin to work with officially released Code::Blocks distribution (either nightly or not) on Windows. It's accomplished by linking your plugin against the DLL's shipped with Code::Blocks.

Introduction

Is useful to know how to compile Code::Blocks sources from scratch to link with our plugin, but when we want to share it with the community then we need to link it against the latest nightly build or final release of Code::Blocks. This is a simple procedure that many people don't know at first. Enjoy :)

Procedure

Step One

Download and install Code::Blocks release to link your plugin with. You may choose either official release available from https://www.codeblocks.org/downloads/5 or latest nightly from this forum - /index.php/board,20.0.html You will also need the Code::Blocks SDK sources to build your plugin, so checkout them from SVN if you haven't done this already.

Step Two

Get the wxWidgets sources at http://wxwidgets.org and configure the setup.h to be compatible with the actual wxmsw28u_gcc_cb_wxXXX.dll compilation.

Step Three

After having your plugin up and running you will need to edit the compiler options and add the directory where your nightly is residing to the linker. Then add the needed libraries to the linker to compile the plugin that usually are wxmsw28u_gcc_cb.dll and libcodeblocks.dll. You don't need to write the .dll extension or the lib word so they will look like this on the linker Options:

  • wxmsw28u_gcc_cb
  • codeblocks

Conclusion

You should now be able to compile the plugin and load it to the current nightly without the symbols error. A problem that many developers confront after compiling the plugin with a compilation that differs from the official one.

This was a quick howto so is maybe missing info, I will update it later as add some images. Good Luck!