File: CMakeLists.txt

package info (click to toggle)
kde-gtk-config 4%3A6.3.4-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 620 kB
  • sloc: cpp: 2,272; ansic: 188; sh: 24; xml: 7; makefile: 5
file content (20 lines) | stat: -rw-r--r-- 403 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
add_library(window-decorations-gtk3-module MODULE
    reloader.c
)

target_link_libraries(window-decorations-gtk3-module
  PRIVATE
    PkgConfig::GLib2
    PkgConfig::GTK+3
)

set_target_properties(window-decorations-gtk3-module
  PROPERTIES
    OUTPUT_NAME libwindow-decorations-gtk-module
)

install(
    TARGETS window-decorations-gtk3-module
    DESTINATION ${KDE_INSTALL_LIBDIR}/gtk-3.0/modules
)