Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ Maintainer: Deepin Packages Builder <packages@linuxdeepin.com>
Build-Depends:
debhelper (>=9),
cmake,
qt6-qmake[!mipsel !mips64el] | qt5-qmake,
qt6-base-dev[!mipsel !mips64el] | qtbase5-dev,
qt6-tools-dev-tools[!mipsel !mips64el] | qttools5-dev-tools,
qt6-tools-dev[!mipsel !mips64el] | qttools5-dev,
qt6-webengine-dev[!mipsel !mips64el] | qtwebengine5-dev,
qt6-multimedia-dev[!mipsel !mips64el],
libdtk6widget-dev[!mipsel !mips64el] | libdtkwidget-dev,
libdtk6gui-dev[!mipsel !mips64el] | libdtkgui-dev,
libdtk6core-dev[!mipsel !mips64el] | libdtkcore-dev,
libdtk6core5-bin[!mipsel !mips64el] |libdtkcore5-bin,
libkf6syntaxhighlighting-dev[!mipsel !mips64el] | libkf5syntaxhighlighting-dev,
qt6-script-dev[!mipsel !mips64el] | qtscript5-dev,
qt6-5compat-dev[!mipsel !mips64el] | hello,
qt6-qmake | qt5-qmake,
qt6-base-dev | qtbase5-dev,
qt6-tools-dev-tools | qttools5-dev-tools,
qt6-tools-dev | qttools5-dev,
qt6-webengine-dev | qtwebengine5-dev,
qt6-multimedia-dev,
libdtk6widget-dev | libdtkwidget-dev,
libdtk6gui-dev | libdtkgui-dev,
libdtk6core-dev | libdtkcore-dev,
libdtk6core5-bin |libdtkcore5-bin,
libkf6syntaxhighlighting-dev | libkf5syntaxhighlighting-dev,
qt6-script-dev | qtscript5-dev,
qt6-5compat-dev | hello,
libqt5scripttools5 | hello,
lxqt-build-tools (>= 0.6.0~),
libssl-dev,
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ cmake_minimum_required(VERSION 3.18)

project(core)

if(${CMAKE_SYSTEM_PROCESSOR} STREQUAL "loongarch64")
add_definitions(-DLOONGARCH64)
if(${CMAKE_SYSTEM_PROCESSOR} STREQUAL "mips64")
add_definitions(-DUNSUPPORTPLATFORM)
endif()

FILE(GLOB_RECURSE PROJECT_SOURCES
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/core/gui/plugindetailsview.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class DLabel;
DWIDGET_END_NAMESPACE

// webengine could not used on some platform
#ifdef LOONGARCH64
#ifdef UNSUPPORTPLATFORM
#define NOT_USE_WEBENGINE
#endif

Expand Down
Loading