forked from Tudat/tudat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
UserSettings.txt.example
91 lines (78 loc) · 4.12 KB
/
UserSettings.txt.example
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Copyright (c) 2010-2018, Delft University of Technology
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification, are
# permitted provided that the following conditions are met:
# - Redistributions of source code must retain the above copyright notice, this list of
# conditions and the following disclaimer.
# - Redistributions in binary form must reproduce the above copyright notice, this list of
# conditions and the following disclaimer in the documentation and/or other materials
# provided with the distribution.
# - Neither the name of the Delft University of Technology nor the names of its contributors
# may be used to endorse or promote products derived from this software without specific
# prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS
# OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
# GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
# AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
# OF THE POSSIBILITY OF SUCH DAMAGE.
#
# Changelog
# YYMMDD Author Comment
# 120210 S.Billemont File created.
#
# References
#
# Notes
# This file contains all the settings that the user can override to allow for the detection
# of various required components and customization of the Tudat installation.
#
# If you want to use this file, rename to "UserSettings.txt".
#
#--------------------------------------
# Tudat
#--------------------------------------
# Enforce a rootpath.
# This should be used in case the FILE token does not given the full-path in the getRootPath() function in basicFunctions.h.
#add_definitions(-DTUDAT_CUSTOM_ROOT_PATH="C:/My/Custom/Path/To/Tudat")
#--------------------------------------
# Boost
#--------------------------------------
# Set Boost paths manually:
# If Boost is not found, use the following to manually set the path to the Boost include and library directories.
#SET(BOOST_ROOT "C:/path/to/boost")
#SET(BOOST_INCLUDEDIR "C:/path/to/boost")
# Set the path to where your build libraries (*.a *.lib) are located
#SET(BOOST_LIBRARYDIR "C:/path/to/boost/stage/lib")
# Additional boost debug settings, to check where things might be wrong:
# Show details for every boost step performed:
#SET(Boost_DEBUG "TRUE")
# Give more detailed cmake boost error messages:
#SET(Boost_DETAILED_FAILURE_MSG "TRUE")
#--------------------------------------
# Eigen 3
#--------------------------------------
# If Eigen3 is not found, use the following to manually set the path to the Eigen3 directory.
#SET(EIGEN3_INCLUDE_DIR "C:/path/to/eigen3") # Set to the path where you extracted eigen3
#SET(EIGEN3_INCLUDE_DIR "${SRCROOT}/External/eigen3") # Or uncomment this if you extracted eigen in the External/eigen3 folder
#--------------------------------------
# Spice
#--------------------------------------
# Use spice.
#SET(USE_CSPICE true)
# Use the following to manually set the path to the directory where the CSPICE user interface
# definitions file SpiceUsr.h is located (usually in the cspice/include directory).
#SET(SPICE_BASE_PATH "C:/path/to/cspice/include")
# Use the following to manually set the path to the (Spice) Kernels directory.
#add_definitions( -DSPICE_KERNEL_CUSTOM_FOLDER="C:/path/to/SpiceKernels/")
#--------------------------------------
# Other CMakeSettings
#--------------------------------------
# Force build in debug or release mode:
#SET(CMAKE_BUILD_TYPE Debug)
#SET(CMAKE_BUILD_TYPE Release)