-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.template.cfg
More file actions
46 lines (43 loc) · 1.52 KB
/
site.template.cfg
File metadata and controls
46 lines (43 loc) · 1.52 KB
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
# This file provides configuration information about non-Python dependencies for
# LLDL.py.
#
# The format of the file is that of the standard library's ConfigParser module.
#
# http://www.python.org/doc/current/lib/module-ConfigParser.html
#
# library_dirs
# List of directories to add to the library search path when compiling
# extensions with this dependency. Use the character given by os.pathsep
# to separate the items in the list. On UN*X-type systems (Linux, FreeBSD,
# OS X):
# library_dirs = /usr/lib:/usr/local/lib
# On Windows:
# library_dirs = c:\mingw\lib,c:\atlas\lib
#
# include_dirs
# List of directories to add to the header file earch path.
# include_dirs = /usr/include:/usr/local/include
#
# All libraries used **must** be dynamic.
[CODE_GENERATION]
# log file name **without** extension (by default, we use '.log')
log_name = generator
# DEBUG/INFO/WARNING/ERROR/CRITICAL
log_level = DEBUG
console_log_level = DEBUG
file_log_level = DEBUG
# 32bits/64bits
# if left blank, we use INT64_t on 64 bits platforms and INT32_t on 32 bits platforms
DEFAULT_INDEX_TYPE =
# Do you want to generate the .c files from Cython?
use_cython = false
# Use debug symbols?
use_debug_symbols = false
# DEFAULT
# -------
# The settings given here will apply to all other sections if not overridden.
# This is a good place to add general library and include directories like
# /usr/local/{lib,include}
[DEFAULT]
library_dirs = /usr/local/lib
include_dirs = /usr/local/include