tomadom wrote:Zlib errors for one. I have built Zlib dozens of times in the past so I'm not sure why this is going so badly.
There is unfortunately no way we can help you based on this one-liner. Please make a new thread if you have issues. We do not know what OS you are on, as you have not told us. Dont forget to post all necessary info in a new thread.
tomadom wrote: So the file size is much lower than I thought. Is that statically or dynamically linked.
Dynamically linked of course. If you link it statically on Windows, you will most likely run into all sorts of issues on the long run and your executable's file size will become bloated. It is generally not advisable to link any libraries statically on Windows (there might be exceptions of course).
As far as I know, static linking is also quite dead on Linux (source:
http://stackoverflow.com/questions/3430 ... ng-is-dead )
tomadom wrote:I think you're a little off track here. What I'm asking is if I build a small program and compile it, what size would it be.
Clearly I wasn't the only one who misunderstood you there. To clarify: I would consider the libraries that the executable directly depends on as part of the "program".
tomadom wrote:For example, a CEGUI frame with a label which says "hello world". I'm asking because I sometimes need to build smaller programs and wanted to know how CEGUI performs in this case.
Lucebac's post should answer that well. Also look at lucebac's application templates, the code there is all you need to run your hello world demo. And it generally contains all the code that you need to run CEGUI, it is basically the CEGUI beginner's guide, simply implemented and set up for a window creation system (glfw etc).