File tree Expand file tree Collapse file tree 4 files changed +404
-233
lines changed
Expand file tree Collapse file tree 4 files changed +404
-233
lines changed Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ jobs:
109109 run : |
110110 cmake --version
111111 sudo apt-get update
112- sudo apt-get install -y ninja-build libgtk-3-dev libx11-dev libxi-dev libayatana-appindicator3-dev
112+ sudo apt-get install -y ninja-build libgtk-3-dev libx11-dev libxi-dev
113113
114114 - name : Configure CMake
115115 shell : bash
Original file line number Diff line number Diff line change @@ -33,7 +33,6 @@ elseif(CMAKE_SYSTEM_NAME STREQUAL "Linux")
3333 pkg_check_modules (GTK REQUIRED IMPORTED_TARGET gtk+-3.0 )
3434 pkg_check_modules (X11 REQUIRED IMPORTED_TARGET x11 )
3535 pkg_check_modules (XI REQUIRED IMPORTED_TARGET xi )
36- pkg_check_modules (AYATANA_APPINDICATOR REQUIRED IMPORTED_TARGET ayatana-appindicator3-0.1 )
3736elseif (APPLE )
3837 file (GLOB PLATFORM_SOURCES "platform/macos/*.mm" )
3938elseif (CMAKE_SYSTEM_NAME STREQUAL "OHOS" )
@@ -73,7 +72,7 @@ elseif(CMAKE_SYSTEM_NAME STREQUAL "iOS")
7372 target_link_libraries (nativeapi PUBLIC "-framework UIKit" "-framework Foundation" "-framework CoreGraphics" )
7473 target_compile_options (nativeapi PRIVATE "-x" "objective-c++" )
7574elseif (CMAKE_SYSTEM_NAME STREQUAL "Linux" )
76- target_link_libraries (nativeapi PUBLIC PkgConfig::GTK PkgConfig::X11 PkgConfig::XI PkgConfig::AYATANA_APPINDICATOR pthread )
75+ target_link_libraries (nativeapi PUBLIC PkgConfig::GTK PkgConfig::X11 PkgConfig::XI pthread )
7776elseif (APPLE )
7877 target_link_libraries (nativeapi PUBLIC "-framework Cocoa" )
7978 target_link_libraries (nativeapi PUBLIC "-framework Carbon" )
You can’t perform that action at this time.
0 commit comments