mirror of
https://github.com/OpenCMT/uLib.git
synced 2025-12-05 23:11:31 +01:00
16 lines
586 B
CMake
16 lines
586 B
CMake
# - Config file for the FooBar package
|
|
# It defines the following variables
|
|
# FOOBAR_INCLUDE_DIRS - include directories for FooBar
|
|
# FOOBAR_LIBRARIES - libraries to link against
|
|
# FOOBAR_EXECUTABLE - the bar executable
|
|
|
|
# Compute paths
|
|
get_filename_component(ULIB_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
|
|
set(ULIB_INCLUDE_DIRS "@CONF_INCLUDE_DIRS@")
|
|
|
|
# Our library dependencies (contains definitions for IMPORTED targets)
|
|
include("${ULIB_CMAKE_DIR}/uLibTargets.cmake")
|
|
|
|
# These are IMPORTED targets created by FooBarTargets.cmake
|
|
set(ULIB_LIBRARIES @ULIB_SHARED_LIBRARIES@)
|