cloudy
trunk
Main Page
Related Pages
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
source
path.h
Go to the documentation of this file.
1
/* This file is part of Cloudy and is copyright (C)1978-2022 by Gary J. Ferland and
2
* others. For conditions of distribution and use see copyright notice in license.txt */
3
4
#ifndef PATH_H_
5
#define PATH_H_
6
7
27
/* The value below will be superseded if
28
* specified by a compiler argument */
29
#ifndef CLOUDY_DATA_PATH
30
31
/*
32
* Specify a search path to data directories here.
33
*
34
* This is for Unix variants. You can specify a search path for one or several
35
* data directories using the standard colon-separated list of Unix paths. You
36
* can enter as many paths as you like. One example could be: */
37
38
//#define CLOUDY_DATA_PATH "/usr/local/cloudy/data:/home/user/cloudy/data"
39
40
41
/* The following (commented-out) example shows the format for Windows. You can
42
* specify a search path for one or several data directories using a list separated
43
* by semi-colon signs ";". The path must be enclosed between double quotes.
44
* NB - note that the backslash "\" always needs to be typed twice, as shown below: */
45
46
//#define CLOUDY_DATA_PATH "c:\\projects\\cloudy\\trunk\\data;c:\\users\\gary\\data"
47
48
/* The // makes the above line of code a comment
49
* if you want to use the Windows version remove the // from the line above and
50
* remove the unix version 12 lines above this line (or comment it out)
51
* NB - make sure that the hash-sign "#" is in the first column */
52
53
#endif
54
55
/* That should be all you need to change! */
56
57
#endif
/* PATH_H_ */
Generated by
1.8.5