File: OpenSurgSimConfig.cmake.in

package info (click to toggle)
opensurgsim 0.7.0-5
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 23,600 kB
  • ctags: 16,440
  • sloc: cpp: 135,427; ansic: 4,247; python: 3,934; makefile: 36
file content (18 lines) | stat: -rw-r--r-- 735 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# - Config file for the OpenSurgSim package
# It defines the following variables
#  OPENSURGSIM_INCLUDE_DIRS - include directories
#  OPENSURGSIM_LIBRARIES    - libraries to link against
#  OPENSURGSIM_DATA_DIR		- directory to use for default data

# Compute paths
get_filename_component(OPENSURGSIM_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
set(OPENSURGSIM_INCLUDE_DIRS "@CONFIG_INCLUDE_DIRS@")

# Our library dependencies (contains definitions for IMPORTED targets)
include("${OPENSURGSIM_CMAKE_DIR}/OpenSurgSimTargets.cmake")

# These are IMPORTED targets created by OpenSurgSimTargets.cmake
set(OPENSURGSIM_LIBRARIES "@SURGSIM_EXPORT_TARGETS@")

# This is the default data directory
set(OPENSURGSIM_DATA_DIR "@CONFIG_DATA_DIR@")