Add devicediscovery and fbconvenience
Generated by pro2cmake.py Change-Id: I405430c622824aab9a7bf6839b2271a494856c24 Reviewed-by: Frederik Gladhorn <frederik.gladhorn@qt.io>
This commit is contained in:
parent
2ce3f440f9
commit
487adb4d7d
@ -3,6 +3,8 @@
|
|||||||
add_subdirectory(themes)
|
add_subdirectory(themes)
|
||||||
add_subdirectory(edid)
|
add_subdirectory(edid)
|
||||||
add_subdirectory(eventdispatchers)
|
add_subdirectory(eventdispatchers)
|
||||||
|
add_subdirectory(devicediscovery)
|
||||||
|
add_subdirectory(fbconvenience)
|
||||||
|
|
||||||
if(QT_FEATURE_freetype OR APPLE OR WIN32)
|
if(QT_FEATURE_freetype OR APPLE OR WIN32)
|
||||||
add_subdirectory(fontdatabases)
|
add_subdirectory(fontdatabases)
|
||||||
|
35
src/platformsupport/devicediscovery/CMakeLists.txt
Normal file
35
src/platformsupport/devicediscovery/CMakeLists.txt
Normal 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
|
||||||
|
)
|
20
src/platformsupport/fbconvenience/CMakeLists.txt
Normal file
20
src/platformsupport/fbconvenience/CMakeLists.txt
Normal 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
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user