mirror of
https://github.com/swaywm/sway.git
synced 2025-11-24 06:59:51 -05:00
Initial setup of window border rendering
Please don't complain to me about the performance of this
This commit is contained in:
parent
c3a5e00b6e
commit
4611bba3db
4 changed files with 53 additions and 0 deletions
|
|
@ -5,6 +5,8 @@ include_directories(
|
|||
${JSONC_INCLUDE_DIRS}
|
||||
${XKBCOMMON_INCLUDE_DIRS}
|
||||
${LIBINPUT_INCLUDE_DIRS}
|
||||
${CAIRO_INCLUDE_DIRS}
|
||||
${PANGO_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
add_executable(sway
|
||||
|
|
@ -24,6 +26,7 @@ add_executable(sway
|
|||
output.c
|
||||
resize.c
|
||||
workspace.c
|
||||
render.c
|
||||
)
|
||||
|
||||
add_definitions(
|
||||
|
|
@ -39,6 +42,8 @@ target_link_libraries(sway
|
|||
${JSONC_LIBRARIES}
|
||||
${WAYLAND_SERVER_LIBRARIES}
|
||||
${LIBINPUT_LIBRARIES}
|
||||
${PANGO_LIBRARIES}
|
||||
${JSONC_LIBRARIES}
|
||||
m
|
||||
)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue