Code::Blocks Forums

Developer forums (C::B DEVELOPMENT STRICTLY!) => Plugins development => Topic started by: xuhdev on January 26, 2012, 03:31:27 pm

Title: Where to obtain Code::Blocks SDK on Windows?
Post by: xuhdev on January 26, 2012, 03:31:27 pm
I can install CB sdk easily on Debian by apt-get install codeblocks-dev, but where can I obtain the CB sdk on Windows?

Thanks!
Title: Re: Where to obtain Code::Blocks SDK on Windows?
Post by: MortenMacFly on January 26, 2012, 03:46:50 pm
I can install CB sdk easily on Debian by apt-get install codeblocks-dev, but where can I obtain the CB sdk on Windows?
On Windows, all you need is the source code that matches your revision you are developing for and then you can link against the DLL's instead of static libraries. With recent GCC this works.
Title: Re: Where to obtain Code::Blocks SDK on Windows?
Post by: xuhdev on January 26, 2012, 03:56:59 pm
On Windows, all you need is the source code that matches your revision you are developing for and then you can link against the DLL's instead of static libraries. With recent GCC this works.

I'll try it. Thanks!
Title: Re: Where to obtain Code::Blocks SDK on Windows?
Post by: stahta01 on January 26, 2012, 04:07:32 pm
This link might help you.

http://wiki.codeblocks.org/index.php?title=Linking_the_plugin_to_a_Nightly_Build (http://wiki.codeblocks.org/index.php?title=Linking_the_plugin_to_a_Nightly_Build)

Tim S.
Title: Re: Where to obtain Code::Blocks SDK on Windows?
Post by: xuhdev on January 26, 2012, 04:57:17 pm
This link might help you.

http://wiki.codeblocks.org/index.php?title=Linking_the_plugin_to_a_Nightly_Build (http://wiki.codeblocks.org/index.php?title=Linking_the_plugin_to_a_Nightly_Build)

Tim S.

Thanks. I'll take a look at that.