forked from computationalpathologygroup/ASAP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathASAPConfig.cmake.in
More file actions
26 lines (22 loc) · 878 Bytes
/
ASAPConfig.cmake.in
File metadata and controls
26 lines (22 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# - Config file for the ASAP package
# It defines the following variables
# ASAP_INCLUDE_DIRS - include directories for ASAP
# ASAP_LIBRARIES - libraries to link against
# Compute paths
get_filename_component(ASAP_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
set(ASAP_INCLUDE_DIR "${ASAP_CMAKE_DIR}/@REL_INCLUDE_DIR@")
set(ASAP_INCLUDE_DIRS
${ASAP_INCLUDE_DIR}
${ASAP_INCLUDE_DIR}/core
${ASAP_INCLUDE_DIR}/multiresolutionimageinterface
${ASAP_INCLUDE_DIR}/annotation
${ASAP_INCLUDE_DIR}/ASAP
${ASAP_INCLUDE_DIR}/imgproc
${ASAP_INCLUDE_DIR}/ASAP/plugins/workstationextension
)
set(ASAP_BINARY_DIR "${ASAP_CMAKE_DIR}/@REL_BINARY_DIR@")
set(ASAP_LIBRARY_DIR "${ASAP_CMAKE_DIR}/@REL_LIBRARY_DIR@")
# Our library dependencies (contains definitions for IMPORTED targets)
if(NOT TARGET ASAP)
include("${ASAP_CMAKE_DIR}/asap-targets.cmake")
endif()