Dear CMake Community,
I have a project where there are:
LibraryA
LibraryB (depends on LibraryA)
Executable (depends on LibraryB and xml2)
during linking the order for link libraries is "LibraryB -lxml2 LibraryA". Should LibraryA (which is internal to the project) be specified before external libraries?
Denis