File: SnapdQt6Config.cmake.in

package info (click to toggle)
snapd-glib 1.70-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,452 kB
  • sloc: ansic: 30,379; cpp: 15,591; makefile: 62; sh: 31
file content (14 lines) | stat: -rw-r--r-- 547 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SNAPD_INCLUDE_DIRS - The snapd-qt include directories
# SNAPD_LIBRARIES - The libraries needed to use snapd-qt

set(SNAPD_LIBRARIES @libdir@/lib@library_name@.so)
set(SNAPD_INCLUDE_DIRS @includedir@/@qt_version@/@include_name@/)

add_library(Snapd::Core SHARED IMPORTED)
set_target_properties(Snapd::Core PROPERTIES
  IMPORTED_LINK_DEPENDENT_LIBRARIES "Qt6::Core"
  IMPORTED_LOCATION "${SNAPD_LIBRARIES}"
  IMPORTED_SONAME "lib@library_name@.so"
  )

set_property(TARGET Snapd::Core PROPERTY INTERFACE_INCLUDE_DIRECTORIES ${SNAPD_INCLUDE_DIRS})