-
Notifications
You must be signed in to change notification settings - Fork 14
/
FindKinKal.cmake
28 lines (23 loc) · 1014 Bytes
/
FindKinKal.cmake
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
27
#- Try to find the KinKal package
# Once done this will define
# KINKAL_FOUND - System has KinKal
# KINKAL_INCLUDE_DIR - The directory needed to compile against KinKal classes
# KINKAL_LIBRARIES - The libraries needed to use KinKal
MESSAGE(STATUS "Adding KinKal include path $ENV{KINKAL_SOURCE_DIR}")
set(KINKAL_INCLUDE_DIR $ENV{KINKAL_SOURCE_DIR}/..)
mark_as_advanced(KINKAL_INCLUDE_DIR)
MESSAGE(STATUS "Looking for KinKal libraries in directory $ENV{KINKAL_LIBRARY_DIR}")
foreach( KKLIB MatEnv Trajectory Detector Fit General )
find_library(${KKLIB}_LIBRARY KinKal_${KKLIB} HINTS $ENV{KINKAL_LIBRARY_DIR})
MESSAGE("Looking for KinKal library " ${KKLIB})
if(${KKLIB}_LIBRARY)
mark_as_advanced(${KKLIB}_LIBRARY)
MESSAGE("Found KinKal library " ${KKLIB} " as " ${${KKLIB}_LIBRARY})
list(APPEND KINKAL_LIBRARIES ${${KKLIB}_LIBRARY})
endif()
endforeach()
IF(KINKAL_LIBRARIES)
SET(KINKAL_FOUND TRUE)
MESSAGE(STATUS "Found KinKal libraries")
ENDIF()
mark_as_advanced(KINKAL_LIBRARIES)