cmake: build kmsconvenience
Change-Id: I3e1cdb4b9dd26a74262a183d8137ed2011a6e52d Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>bb10
parent
6b637d1afe
commit
8a1110f388
|
|
@ -29,6 +29,10 @@ if(QT_FEATURE_vulkan)
|
|||
add_subdirectory(vkconvenience)
|
||||
endif()
|
||||
|
||||
if(QT_FEATURE_kms)
|
||||
add_subdirectory(kmsconvenience)
|
||||
endif()
|
||||
|
||||
if(APPLE)
|
||||
add_subdirectory(clipboard)
|
||||
add_subdirectory(graphics)
|
||||
|
|
|
|||
|
|
@ -0,0 +1,20 @@
|
|||
# Generated from kmsconvenience.pro.
|
||||
|
||||
#####################################################################
|
||||
## KmsSupport Module:
|
||||
#####################################################################
|
||||
|
||||
find_package(Libdrm)
|
||||
|
||||
add_qt_module(KmsSupport
|
||||
STATIC
|
||||
SOURCES
|
||||
qkmsdevice.cpp qkmsdevice_p.h
|
||||
DEFINES
|
||||
QT_NO_CAST_FROM_ASCII
|
||||
LIBRARIES
|
||||
Qt::CorePrivate
|
||||
Qt::GuiPrivate
|
||||
PUBLIC_LIBRARIES
|
||||
Libdrm::Libdrm
|
||||
)
|
||||
Loading…
Reference in New Issue