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

Last change on this file since 7967 was 7865, checked in by hudson, 14 years ago

Refactoring to clean up pylint errors.

File size: 476 bytes
RevLine 
[7865]1""" Build configuration for ANUGA. """
[3282]2
[3327]3# Flags to pass to GCC
4GCCFLAGS = '-O3 -Wall'
5
6# Flags to pass to MSVC Compiler
7MSVCFLAGS = '/Wall'
[3414]8
[3544]9# Optimisation level used when building the .pyo files
10OPTIMISATION_LEVEL = 1
[3545]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.
[3546]15#PREFIX = ''
[3545]16
17# Install .py files as well as the binaries? Yes/No option
18INSTALL_PYTHON_SOURCE = 'Yes'
Note: See TracBrowser for help on using the repository browser.