Neka
Neka

Reputation: 1664

Dependencies description of wxWidgets libraries

I simply want to use wxRichTextCtrl, but I have dependencies, dependencies, dependencies... So, libwxmsw30u_richtext.a has this dependencies: libwxmsw30u_html.a, libwxbase30u_xml.a, libwxexpat.a and more more more.

Is somewhere FAQ about such dependencies?

Because I have one unsolved dependency on "wxToolbook, wxChoiceBook" by now, and I have no idea what library I miss. I feel that is not last dependency I will need to solve to start using wxRichTextCtrl.

Upvotes: 0

Views: 477

Answers (2)

VZ.
VZ.

Reputation: 22688

The documentation of each class mentions the library it is defined in, e.g. wxToolbook documentation says that it is in wxCore library and, BTW, clicking on this library brings you to the library list page mentioned in @catalin's answer above which also lists wxRichText library dependencies.

The advice to just link with everything if you're not sure is sound as well, BTW, the unused libraries will simply be discarded.

Upvotes: 1

catalin
catalin

Reputation: 1987

See the wxWidgets Library List.

However it does not include 3rd party libs like wxexpat, wxzlib, wxjpeg etc.

Upvotes: 0

Related Questions