1
0
This repository has been archived on 2024-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
RealtimeOscilloscope/src/xf/port/active-qt/xf-port-default.pri
2023-11-28 14:19:36 +01:00

25 lines
587 B
Plaintext

#
# This PRI file takes only the classes needed from the
# 'default' port.
#
INCLUDEPATH += $$PWD/..
# Path to default implementation of the XF port
DEFAULT_IMPL_PATH = $$PWD/../default
DEFAULT_IMPL_SOURCES += \
"$${DEFAULT_IMPL_PATH}/xf-default.cpp" \
"$${DEFAULT_IMPL_PATH}/timeoutmanager-default.cpp" \
"$${DEFAULT_IMPL_PATH}/dispatcher-active.cpp"
DEFAULT_IMPL_HEADERS += \
"$${DEFAULT_IMPL_PATH}/timeoutmanager-default.h" \
"$${DEFAULT_IMPL_PATH}/dispatcher-active.h"
SOURCES += \
$${DEFAULT_IMPL_SOURCES}$$
HEADERS += \
$${DEFAULT_IMPL_HEADERS}$$