-
Notifications
You must be signed in to change notification settings - Fork 6
/
FijeeConfig.cmake.in
45 lines (41 loc) · 1.33 KB
/
FijeeConfig.cmake.in
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# - Config file for the Fijee package
# It defines the following variables
# Fijee_INCLUDE_DIRS - include directories
# Fijee_LIBRARIES - libraries to link against
## Compute paths
#get_filename_component(Fijee_CMAKE_DIR "${CMAKE_CURRENT_LIST_FILE}" PATH)
#set(Fijee_INCLUDE_DIRS "@CONF_INCLUDE_DIRS@")
#
## Our library dependencies (contains definitions for IMPORTED targets)
##if( NOT TARGET foo AND NOT FooBar_BINARY_DIR)
## include("${FOOBAR_CMAKE_DIR}/FooBarTargets.cmake")
##endif()
#
### These are IMPORTED targets created by FooBarTargets.cmake
##set(FOOBAR_LIBRARIES foo)
##set(FOOBAR_EXECUTABLE bar)
# Tell the user project where to find our headers and libraries
set( Fijee_INCLUDE_DIRS
"@Fijee_INCLUDE_DIR@"
"@EIGEN_INCLUDE_DIR@"
"@NIFTI_INCLUDE_DIR@"
"@CGAL_INCLUDE_DIRS@"
"@METIS_INCLUDE_DIR@"
"@VTK_INCLUDE_DIRS@"
"@DOLFIN_INCLUDE_DIRS@"
)
#
set( Fijee_LIBRARY_DIRS
"@Fijee_LIBRARY_DIR@"
"@CGAL_LIBRARIES_DIR@"
"@METIS_LIBRARY_DIR@"
"@VTK_LIBRARY_DIRS@"
"@DOLFIN_LIBRARY_DIRS@"
)
#
set( VTK_LIBRARIES "@VTK_LIBRARIES@" )
#
# Our library dependencies (contains definitions for IMPORTED targets)
#include("@Fijee_CMAKE_DIR@/FijeeLibraryDepends.cmake")
# These are IMPORTED targets created by FijeeLibraryDepends.cmake
set( Fijee_LIBRARIES FijeeUtils FijeeElectrodes FijeeBiophysics FijeeMesh FijeeFEM )