Add resource folder to Code::Blocks?

Hello!

Lets say I have two main folders:
-Sources (contains all source code)
-Resources (contains all assets, like textures, sounds, etc)

How can I add the "Resources" folder to CB so I can compile and have the resources ship with the .exe (not packed into the exe, and not .rc either)

For example, what I want it to look like in the output folder:
-\release\
---\textures\
---\sounds\
---config.cfg
---readme.txt
---program.exe

Is this possible automated or do I have to place the files manually?

Thanks!
You might be interested in CMake to make your life easier. I have used CMake in the past to create a professional looking installer using the CPack package. You might be wondering what does this have to do with Code::Blocks and resources? Well CMake can generate a Code::Blocks project as well as packaging all the resources into the installer.
http://www.cmake.org/
http://www.bogotobogo.com/cplusplus/files/cmake/CMake-tutorial-pdf.pdf
http://www.cmake.org/Wiki/CMake#CPack
Last edited on
Hah, thats awesome. Thank you!
Topic archived. No new replies allowed.