aa50b377a7
Change-Id: Ib6142b93df066e3658eb189b50ca74c455fe7e56 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
26 lines
487 B
CMake
26 lines
487 B
CMake
add_subdirectory(corelib)
|
|
add_subdirectory(embedded)
|
|
add_subdirectory(qpa)
|
|
|
|
if(TARGET Qt::DBus)
|
|
add_subdirectory(dbus)
|
|
endif()
|
|
if(TARGET Qt::Network)
|
|
add_subdirectory(network)
|
|
endif()
|
|
if(TARGET Qt::Test)
|
|
add_subdirectory(qtestlib)
|
|
endif()
|
|
if(TARGET Qt::Concurrent)
|
|
add_subdirectory(qtconcurrent)
|
|
endif()
|
|
if(TARGET Qt::Sql)
|
|
add_subdirectory(sql)
|
|
endif()
|
|
if(TARGET Qt::Gui)
|
|
add_subdirectory(gui)
|
|
endif()
|
|
if(TARGET Qt::Widgets)
|
|
add_subdirectory(widgets)
|
|
endif()
|