source: anuga_core/source/anuga/build_options.py @ 5442

Last change on this file since 5442 was 3875, checked in by jack, 18 years ago

Moved the SConstruct and build_options.py into the source/anuga directory.
It still builds like normal and will still install an anuga subdir under PREFIX.

File size: 469 bytes
RevLine 
[3282]1# Build configuration for ANUGA
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.