blob: 31321c70adb0b86bc869ffcbf3e27422a26b923b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: BSD-3-Clause
if(NOT WASM)
add_subdirectory(devicediscovery)
add_subdirectory(fbconvenience)
endif()
if(QT_FEATURE_evdev
OR QT_FEATURE_vxworksevdev
OR QT_FEATURE_integrityhid
OR QT_FEATURE_libinput
OR QT_FEATURE_tslib
OR (QT_FEATURE_libinput AND QT_FEATURE_xkbcommon))
add_subdirectory(input)
endif()
if(QT_FEATURE_kms)
add_subdirectory(kmsconvenience)
endif()
|