-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUserSettings.txt.example
81 lines (66 loc) · 3.16 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
# Copyright (c) 2010-2013, S. Hirsh
# Copyright (c) 2010-2013, Delft University of Technology
# All rights reserved.
# See COPYING for license details.
#
# Changelog
# YYMMDD Author Comment
# 120210 S.Billemont File created.
# 120522 A. Ronse Included options for setting Tudat paths.
#
# 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
#--------------------------------------
# If Tudat is not found, use the following to manually set the path to the Tudat library.
#SET(TUDAT_BASE_PATH "C:/path/to/Tudat")
# Enforce a rootpath for Tudat directory.
# 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")
#--------------------------------------
# Tudat Core
#--------------------------------------
# If Tudat Core is not found, use the following to manually set the path to the TudatCore library.
#SET(TUDAT_CORE_BASE_PATH "C:/path/to/TudatCore")
# Enforce a rootpath for Tudat Core directory.
# 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_CORE_CUSTOM_ROOT_PATH="C:/My/Custom/Path/To/TudatCore")
#--------------------------------------
# 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:/CWorkspace/tudatCore/trunk/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")
# Set Boost variants to be used. The defaults in the CMakeLists.txt are STATIC_LIBS ON, MULTITHREADED ON and STATIC_RUNTIME ON.
#SET(Boost_USE_STATIC_LIBS ON)
#SET(Boost_USE_MULTITHREADED ON)
#SET(Boost_USE_STATIC_RUNTIME ON)
#--------------------------------------
# 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
#--------------------------------------
# Other CMakeSettings
#--------------------------------------
# Force build in debug or release mode.
#SET(CMAKE_BUILD_TYPE Debug)
#SET(CMAKE_BUILD_TYPE Release)
# Manually set lib and bin directories.
#SET(LIBROOT "C:/path/to/lib")
#SET(BINROOT "C:/path/to/bin")