summaryrefslogtreecommitdiff
path: root/style/CMakeLists.txt
blob: 8ddbae8eec2eb4a28c8d004d1af30626456a8195 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
add_library("style")

add_library("turns::style" ALIAS "style")

target_add_glib_resources("style"
  PREFIX "ch/arknet/Turns"
  CSS_FILES
  "style.css"
  "style-dark.css"
)

target_link_libraries("style" PUBLIC
  "PkgConfig::giomm"
  PRIVATE
  "$<$<AND:$<CXX_COMPILER_ID:GNU,Clang>,$<CONFIG:Debug>>:gcov>"
)

enable_coverage("style")