source: trunk/anuga_core/source/anuga/build_options.py @ 8279

Last change on this file since 8279 was 8210, checked in by habili, 13 years ago

testing commit

File size: 477 bytes
Line 
1""" Build configuration for ANUGA. """
2
3# Flags to pass to GCC
4GCCFLAGS = '-O3 -Wall'
5
6# Flags to pass to MSVC Compiler
7MSVCFLAGS = '/Wall'
8
9# Optimisation level used when building the .pyo files
10OPTIMISATION_LEVEL = 1
11
12# Where to install the compiled files. Defaults vary based on OS.
13# Uncommenting this and leaving it as the empty string will cause the
14# build to fail.
15#PREFIX = ''
16
17# Install .py files as well as the binaries? Yes/No option
18INSTALL_PYTHON_SOURCE = 'Yes'
19 
Note: See TracBrowser for help on using the repository browser.