Add devicediscovery and fbconvenience

Generated by pro2cmake.py

Change-Id: I405430c622824aab9a7bf6839b2271a494856c24
Reviewed-by: Frederik Gladhorn <frederik.gladhorn@qt.io>
This commit is contained in:
Albert Astals Cid 2019-02-08 16:10:21 +01:00
parent 2ce3f440f9
commit 487adb4d7d
3 changed files with 57 additions and 0 deletions

View File

@ -3,6 +3,8 @@
add_subdirectory(themes)
add_subdirectory(edid)
add_subdirectory(eventdispatchers)
add_subdirectory(devicediscovery)
add_subdirectory(fbconvenience)
if(QT_FEATURE_freetype OR APPLE OR WIN32)
add_subdirectory(fontdatabases)

View File

@ -0,0 +1,35 @@
# Generated from devicediscovery.pro.
#####################################################################
## DeviceDiscoverySupport Module:
#####################################################################
add_qt_module(DeviceDiscoverySupport
STATIC
SOURCES
qdevicediscovery_p.h
DEFINES
QT_NO_CAST_FROM_ASCII
LIBRARIES
Qt::CorePrivate
)
## Scopes:
#####################################################################
extend_target(DeviceDiscoverySupport CONDITION QT_FEATURE_libudev
SOURCES
qdevicediscovery_udev.cpp qdevicediscovery_udev_p.h
LIBRARIES
libudev
)
extend_target(DeviceDiscoverySupport CONDITION QT_FEATURE_evdev AND NOT QT_FEATURE_libudev
SOURCES
qdevicediscovery_static.cpp qdevicediscovery_static_p.h
)
extend_target(DeviceDiscoverySupport CONDITION NOT QT_FEATURE_evdev AND NOT QT_FEATURE_libudev
SOURCES
qdevicediscovery_dummy.cpp qdevicediscovery_dummy_p.h
)

View File

@ -0,0 +1,20 @@
# Generated from fbconvenience.pro.
#####################################################################
## FbSupport Module:
#####################################################################
add_qt_module(FbSupport
STATIC
SOURCES
qfbbackingstore.cpp qfbbackingstore_p.h
qfbcursor.cpp qfbcursor_p.h
qfbscreen.cpp qfbscreen_p.h
qfbvthandler.cpp qfbvthandler_p.h
qfbwindow.cpp qfbwindow_p.h
DEFINES
QT_NO_CAST_FROM_ASCII
LIBRARIES
Qt::CorePrivate
Qt::GuiPrivate
)