File: libappimageConfig.cmake.in

package info (click to toggle)
libappimage 1.0.4-5-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,320 kB
  • sloc: cpp: 4,678; ansic: 1,325; sh: 169; python: 27; makefile: 19
file content (24 lines) | stat: -rw-r--r-- 845 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# - Config file for the AppImage package
# Exported Targets
#  - libappimage
#  - libappimage_shared
#
# Exported Variables (DEPRECATED use the exported targets instead)
#  LIBAPPIMAGE_INCLUDE_DIRS - include directories for LIBAPPIMAGE
#  LIBAPPIMAGE_LIBRARIES    - libraries to link against

@PACKAGE_INIT@

# Compute paths
get_filename_component(LIBAPPIMAGE_CMAKE_DIR ${CMAKE_CURRENT_LIST_FILE} PATH)

# Import dependencies implicitly required by libappimageTargets.cmake
include(${LIBAPPIMAGE_CMAKE_DIR}/imported_dependencies.cmake)

# Our library dependencies (contains definitions for IMPORTED targets)
include(${LIBAPPIMAGE_CMAKE_DIR}/libappimageTargets.cmake)

if(NOT @LIBAPPIMAGE_SHARED_ONLY@)
    get_target_property(LIBAPPIMAGE_INCLUDE_DIRS libappimage INTERFACE_INCLUDE_DIRECTORIES)
    set(LIBAPPIMAGE_LIBRARIES libappimage)
endif()