Add wayland files

This commit is contained in:
AdenKoperczak 2025-05-13 18:34:50 -04:00
parent a9067bf5d9
commit 4c8f0b4df6
No known key found for this signature in database
GPG key ID: 9843017036F62EE7
2 changed files with 5 additions and 0 deletions

View file

@ -205,6 +205,8 @@ jobs:
cd plugins/ cd plugins/
mkdir -p sqldrivers/ mkdir -p sqldrivers/
cp "${RUNNER_WORKSPACE}/Qt/${{ matrix.qt_version }}/${{ matrix.qt_arch_dir }}/plugins/sqldrivers/libqsqlite.so" sqldrivers/ cp "${RUNNER_WORKSPACE}/Qt/${{ matrix.qt_version }}/${{ matrix.qt_arch_dir }}/plugins/sqldrivers/libqsqlite.so" sqldrivers/
mkdir -p platforms/
cp ${RUNNER_WORKSPACE}/Qt/${{ matrix.qt_version }}/${{ matrix.qt_arch_dir }}/plugins/platforms/libqwayland* platforms/
cd .. cd ..
popd popd
tar -czf supercell-wx-${{ matrix.artifact_suffix }}.tar.gz supercell-wx/ tar -czf supercell-wx-${{ matrix.artifact_suffix }}.tar.gz supercell-wx/

View file

@ -34,6 +34,7 @@ find_package(QT NAMES Qt6
Svg Svg
Widgets Widgets
Sql Sql
WaylandClient
REQUIRED) REQUIRED)
find_package(Qt${QT_VERSION_MAJOR} find_package(Qt${QT_VERSION_MAJOR}
@ -48,6 +49,7 @@ find_package(Qt${QT_VERSION_MAJOR}
Svg Svg
Widgets Widgets
Sql Sql
WaylandClient
REQUIRED) REQUIRED)
set(SRC_EXE_MAIN source/scwx/qt/main/main.cpp) set(SRC_EXE_MAIN source/scwx/qt/main/main.cpp)
@ -696,6 +698,7 @@ target_link_libraries(scwx-qt PUBLIC Qt${QT_VERSION_MAJOR}::Widgets
Qt${QT_VERSION_MAJOR}::Positioning Qt${QT_VERSION_MAJOR}::Positioning
Qt${QT_VERSION_MAJOR}::SerialPort Qt${QT_VERSION_MAJOR}::SerialPort
Qt${QT_VERSION_MAJOR}::Svg Qt${QT_VERSION_MAJOR}::Svg
Qt${QT_VERSION_MAJOR}::WaylandClient
Boost::json Boost::json
Boost::timer Boost::timer
Boost::atomic Boost::atomic