Mercurial > enso_osx
view SConstruct @ 5:f1194791e5e1
pkg-config is now used to dynamically fetch required cairo paths as necessary.
author | Atul Varma <varmaa@toolness.com> |
---|---|
date | Sun, 24 Feb 2008 09:30:58 -0600 |
parents | 911cb701a42e |
children |
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( "src/SConscript", exports="env" )