How to build wxFormBuilder

Do you have a question about makefiles, a compiler or IDE you are using and need to know how to set it up for wxWidgets or why it doesn't compile but other IDE's do ? Post your questions here.
Post Reply
mrdebug
Earned some good credits
Earned some good credits
Posts: 131
Joined: Mon Jul 17, 2006 4:57 pm

How to build wxFormBuilder

Post by mrdebug »

I'm trying to build exFormBuilder in my Debian 9 machine but I obtain this error:

../../../sdk/plugin_interface/xrcconv.cpp:33:19: fatal error: ticpp.h: File o directory non esistente
#include <ticpp.h>
^
What can I do to resolve?
New Pagodi
Super wx Problem Solver
Super wx Problem Solver
Posts: 469
Joined: Tue Jun 20, 2006 6:47 pm
Contact:

Re: How to build wxFormBuilder

Post by New Pagodi »

ticpp was changed to a submodule. If you're using a git, you'll need to initialize the submodule using

Code: Select all

git submodule update --init ./sdk/tinyxml/
If you're using the code from a release package, just download a recent snapshot from the ticpp repo and put it in the "<srcroot>/sdk/tinyxml/" folder.
Post Reply