mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-01 07:05:48 +00:00
chore: disable show animation for sw mips and arm
This commit is contained in:
parent
ea81b7326d
commit
65f54a1a7e
3
debian/control
vendored
3
debian/control
vendored
@ -14,7 +14,8 @@ Build-Depends: debhelper (>= 8.0.0),
|
||||
libxcb-icccm4-dev,
|
||||
libxtst-dev,
|
||||
libdtkwidget-dev,
|
||||
libdtkcore-dev | libdtkutil-dev,
|
||||
libdtkcore-dev,
|
||||
libdtkcore-bin,
|
||||
qttools5-dev-tools,
|
||||
libxcb-icccm4-dev,
|
||||
qtbase5-private-dev,
|
||||
|
@ -14,11 +14,29 @@ find_package(Qt5Concurrent REQUIRED)
|
||||
find_package(Qt5X11Extras REQUIRED)
|
||||
find_package(Qt5DBus REQUIRED)
|
||||
find_package(DtkWidget REQUIRED)
|
||||
find_package(DtkCMake REQUIRED)
|
||||
|
||||
pkg_check_modules(XCB_EWMH REQUIRED xcb-ewmh x11)
|
||||
pkg_check_modules(DFrameworkDBus REQUIRED dframeworkdbus)
|
||||
pkg_check_modules(QGSettings REQUIRED gsettings-qt)
|
||||
|
||||
if (OS_DEEPIN_PROFESSIONAL)
|
||||
if (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64")
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "sw_64")
|
||||
target_compile_definitions(${BIN_NAME} DISABLE_SHOW_ANIMATION)
|
||||
endif()
|
||||
|
||||
if (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "mips64")
|
||||
target_compile_definitions(${BIN_NAME} DISABLE_SHOW_ANIMATION)
|
||||
endif()
|
||||
|
||||
if (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "aarch64")
|
||||
target_compile_definitions(${BIN_NAME} DISABLE_SHOW_ANIMATION)
|
||||
endif()
|
||||
|
||||
# driver-manager
|
||||
add_executable(${BIN_NAME} ${SRCS} ${INTERFACES} item/item.qrc frame.qrc)
|
||||
target_include_directories(${BIN_NAME} PUBLIC ${DtkWidget_INCLUDE_DIRS}
|
||||
|
Loading…
x
Reference in New Issue
Block a user