Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/archlinux-build-wlroots-17.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
pacman --noconfirm --noprogressbar -Syu
- name: Install dep
run: |
pacman -Syu --noconfirm --noprogressbar base-devel qt6-base qt6-declarative cmake pkgconfig pixman wlroots wayland-protocols git
pacman -Syu --noconfirm --noprogressbar base-devel qt6-base qt6-declarative cmake pkgconfig pixman wlroots wayland-protocols git libinput
pacman -Syu --noconfirm --noprogressbar clang ninja make
pacman -Syu --noconfirm --noprogressbar fakeroot meson sudo
- name: Set up user
Expand Down
3 changes: 2 additions & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ Build-Depends: debhelper (>= 9),
libpixman-1-dev,
libxcb-ewmh-dev,
wayland-protocols,
wlr-protocols
wlr-protocols,
libinput-dev
Standards-Version: 3.9.8

Package: libwaylib
Expand Down
2 changes: 2 additions & 0 deletions nix/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
, wlr-protocols
, pixman
, libdrm
, libinput
, nixos-artwork

# only for test
Expand Down Expand Up @@ -60,6 +61,7 @@ stdenv.mkDerivation (finalAttrs: {
wlr-protocols
pixman
libdrm
libinput
];

propagatedBuildInputs = [
Expand Down
2 changes: 2 additions & 0 deletions src/server/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ pkg_search_module(PIXMAN REQUIRED IMPORTED_TARGET pixman-1)
pkg_search_module(XKBCOMMON REQUIRED IMPORTED_TARGET xkbcommon)
pkg_search_module(XCB REQUIRED IMPORTED_TARGET xcb)
pkg_search_module(EGL REQUIRED IMPORTED_TARGET egl)
pkg_search_module(LIBINPUT REQUIRED IMPORTED_TARGET libinput)

ws_generate(
server
Expand Down Expand Up @@ -334,6 +335,7 @@ target_link_libraries(${TARGET}
PkgConfig::XKBCOMMON
PkgConfig::XCB
PkgConfig::EGL
PkgConfig::LIBINPUT
)

set(CMAKE_INCLUDE_CURRENT_DIR ON)
Expand Down
Loading