mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-06-18 16:55:40 +02:00
particle/dynlist: compile as a shared library
This commit is contained in:
parent
1cce649f06
commit
2f83ed1fc3
3 changed files with 7 additions and 4 deletions
|
@ -31,7 +31,7 @@ pkg_check_modules(JSON REQUIRED json-c)
|
|||
add_library(i3 MODULE i3.c)
|
||||
target_compile_options(i3 PRIVATE ${JSON_CFLAGS_OTHER})
|
||||
target_include_directories(i3 PRIVATE ${JSON_INCLUDE_DIRS})
|
||||
target_link_libraries(i3 module-sdk ${JSON_LIBRARIES})
|
||||
target_link_libraries(i3 module-sdk dynlist ${JSON_LIBRARIES})
|
||||
|
||||
add_library(label MODULE label.c)
|
||||
target_link_libraries(label module-sdk)
|
||||
|
@ -48,7 +48,7 @@ target_link_libraries(network module-sdk)
|
|||
add_library(removables MODULE removables.c)
|
||||
target_compile_options(removables PRIVATE ${UDEV_CFLAGS_OTHER})
|
||||
target_include_directories(removables PRIVATE ${UDEV_INCLUDE_DIRS})
|
||||
target_link_libraries(removables module-sdk ${UDEV_LIBRARIES})
|
||||
target_link_libraries(removables module-sdk dynlist ${UDEV_LIBRARIES})
|
||||
|
||||
pkg_check_modules(XCB_XKB REQUIRED xcb-xkb)
|
||||
add_library(xkb MODULE xkb.c)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue