forked from SGL-UT/gnsstk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GNSSTKConfig.cmake.in
36 lines (31 loc) · 1.69 KB
/
GNSSTKConfig.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
# - GNSSTk: GNSS data processing library and applications by SGL @ ARL:UT.
#The primary goals of the GNSSTk project are to:
# * provide applications for use by the GNSS and satellite navigation community.
# * provide a core library to facilitate the development of GNSS applications.
#
#==============================================================================
# The source code provided by the GNSSTk is distributed under the GNU LGPL, Version 3.
#
# * This license gives all users the right to use and redistribute the code.
# * Users of the GNSSTk are not required to open their source, according to the LGPL.
# * This makes the GNSSTk a practical choice for commercial projects.
# * Full text copies of the GPL (COPYING.txt) and the LGPL (COPYING.LESSER.txt) are included with the GNSSTk distribution package.
#
# For more information about the GPL or LGP, please refer to the following:
#
# * http://www.gnu.org/copyleft/lesser.html
# * http://www.gnu.org/licenses/gpl-howto.html
#==============================================================================
set( GNSSTK_FOUND TRUE )
set( GNSSTK_PYTHON_FOUND @BUILD_PYTHON@ )
@PACKAGE_INIT@
set( GNSSTK_INCLUDE_DIRS "${PACKAGE_PREFIX_DIR}/@GNSSTK_INCLUDE_PARENT@" )
set( GNSSTK_BINDIR "@PACKAGE_CMAKE_INSTALL_BINDIR@" )
set( GNSSTK_LIBRARY_DIRS "@PACKAGE_CMAKE_INSTALL_LIBDIR@" )
set( GNSSTK_RUNTIME_LIBRARY_DIRS "@PACKAGE_CMAKE_INSTALL_LIBDIR@" )
set( GNSSTK_ROOT_DIR "@PACKAGE_CMAKE_INSTALL_PREFIX@" )
if ( GNSSTK_PYTHON_FOUND )
set( GNSSTK_PYTHON_DIR "${PACKAGE_PREFIX_DIR}/@GNSSTK_SWIG_MODULE_DIR@")
endif( GNSSTK_PYTHON_FOUND )
include("@PACKAGE_INSTALL_CONFIG_DIR@/@[email protected]")
message(STATUS "GNSSTk found at ${GNSSTK_ROOT_DIR}")