-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcombase-config.cmake.in
More file actions
21 lines (18 loc) · 945 Bytes
/
combase-config.cmake.in
File metadata and controls
21 lines (18 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Config file for the ComBase package. It defines the following variables:
# COMBASE_VERSION - version of ComBase
# COMBASE_BINARY_DIRS - binary directories for ComBase
# COMBASE_INCLUDE_DIRS - include directories for ComBase
# COMBASE_LIBRARY_DIRS - library directories for ComBase (normally not used!)
# COMBASE_LIBRARIES - libraries to link against
# COMBASE_EXECUTABLES - the combase binaries/executables
# Tell the user project where to find the headers and libraries
set (COMBASE_VERSION "@PACKAGE_VERSION@")
set (COMBASE_BINARY_DIRS "@COMBASE_BIN_DIR@")
set (COMBASE_INCLUDE_DIRS "@COMBASE_INCLUDE_DIRS@")
set (COMBASE_LIBRARY_DIRS "@COMBASE_LIB_DIR@")
# Our library dependencies (contains definitions for IMPORTED targets)
include ("@COMBASE_CMAKE_DIR@/combase-library-depends.cmake")
# These are IMPORTED targets created by combase-library-depends.cmake
set (COMBASE_LIBRARIES combaselib)
set (COMBASE_EXECUTABLES)