import os, commands



# Get compiler from pkg-config
compiler = commands.getoutput('pkg-config --variable=compiler dolfin')

# Create a SCons Environment based on the main os environment
env = Environment(ENV=os.environ, CXX=compiler)


# Program name
env.Program('horvelprofile.bin', ['main.cpp'])

