Author Topic: If I created Code::Blocks project files for wxWidgets samples; would it be used?  (Read 7425 times)

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7590
    • My Best Post
I just worked on an message that would have been easier if Code::Blocks projects existed for all the wxWidgets samples. see http://forums.codeblocks.org/index.php/topic,9424.0.html

I want to know if anyone is interested in Code::Blocks projects for the wxWidgets samples?
And, what builds?

I was thinking MultiLib DLL for the MinGW GCC Compiler. In the four targets of
Win32 DLL Unicode Release
Win32 DLL Unicode Debug
Win32 DLL Release
Win32 DLL Debug

The reason for MultiLib instead of Monolithic is that wxPack works best if project is MultiLib.

Tim S

C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline alb_cb_moon

  • Multiple posting newcomer
  • *
  • Posts: 25
Some months before I was interested in build almost one example and find this thread.

http://forums.codeblocks.org/index.php/topic,7054.msg64555.html#msg64555

At last I could build the minimal example, but I think if all examples had a cb project and its are included in wxWidgets distribution then  CB use could be boost
OS: Windows XP SP2
GUI Library: wxWidgets 2.8.10
IDE: CodeBlocks SVN / Nigth Builds Compiler: MinGW & gcc 3.4.5

Offline vri

  • Multiple posting newcomer
  • *
  • Posts: 18
I would be interested, mainly for student projects to learn about wxWidgets and Code::Blocks.

Offline petsagouris

  • Single posting newcomer
  • *
  • Posts: 5
    • arhitektonas
I would be interested too. Please ;)

Offline stahta01

  • Lives here!
  • ****
  • Posts: 7590
    • My Best Post
I have started work on making the sample CB projects.

Tim S
C Programmer working to learn more about C++ and Git.
On Windows 7 64 bit and Windows 10 64 bit.
--
When in doubt, read the CB WiKi FAQ. http://wiki.codeblocks.org

Offline ollydbg

  • Developer
  • Lives here!
  • *****
  • Posts: 5913
  • OpenCV and Robotics
    • Chinese OpenCV forum moderator
WoW, it's great, because I also posted a thread about the wx samples. see here:
http://forums.codeblocks.org/index.php/topic,9622.msg67682.html#msg67682

So, I think create sample project of cb is very necessary, because for a beginner like me, it will take me a lot of time to convert the  visual c++ project to cb project.

Thanks for your effort.
If some piece of memory should be reused, turn them to variables (or const variables).
If some piece of operations should be reused, turn them to functions.
If they happened together, then turn them to classes.