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!
Quote from: 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?
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.
Quote from: MortenMacFly on January 26, 2012, 03:46:50 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!
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.
Quote from: 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.
Thanks. I'll take a look at that.