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()
|