source: build_options.py @ 3545

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

Added basic install support of the python .py/.pyc/.pyo files.

File size: 577 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# Location of the metis directory relative to the pymetis directory
10METIS_DIR = 'metis-4.0'
11
12# Optimisation level used when building the .pyo files
13OPTIMISATION_LEVEL = 1
14
15# Where to install the compiled files. Defaults vary based on OS.
16# Uncommenting this and leaving it as the empty string will cause the
17# build to fail.
18PREFIX = 'c:\\pyanuga_temp'
19
20# Install .py files as well as the binaries? Yes/No option
21INSTALL_PYTHON_SOURCE = 'Yes'
Note: See TracBrowser for help on using the repository browser.