[lang] Xml could be option, this is developer tooling after all

main
Adriaan de Groot 6 years ago
parent b8595a1323
commit d7f0a1b937

@ -18,7 +18,8 @@
#
###
find_package( Qt5 ${QT_VERSION} CONFIG REQUIRED Xml )
add_executable(txload txload.cpp)
target_link_libraries(txload Qt5::Xml)
find_package(Qt5 COMPONENTS Xml)
if( Qt5Xml_FOUND )
add_executable(txload txload.cpp)
target_link_libraries(txload Qt5::Xml)
endif()

Loading…
Cancel
Save