view SConstruct @ 2:a636a7618da6

Added the prototype OSX TrasparentWindow implementation.
author Atul Varma <varmaa@toolness.com>
date Sun, 24 Feb 2008 08:40:13 -0600
parents
children 911cb701a42e
line wrap: on
line source

# ----------------------------------------------------------------------------
#
#   enso_osx SConstruct
#
# ----------------------------------------------------------------------------

import sys

ccBaseFlags = [
    "-Wall",     # GCC: Display all warnings.
    "-Werror",   # GCC: Treat warnings as errors.
]

env = Environment(
    CCFLAGS = ccBaseFlags,
    )

# Add the Python library to our environment.
env.Append(
    CPPPATH = sys.prefix + "/include/python" + sys.version[:3],
    LIBPATH = sys.prefix + "/lib/python" + sys.version[:3],
    )

SConscript( "enso_osx/graphics/SConscript", exports="env" )