annotate SConstruct @ 13:b9d124a15926

To improve cache performance, the enigma machine rotors are now stored together with the reflector in a vector.
author Brian Neal <bgneal@gmail.com>
date Mon, 02 Jul 2012 19:14:36 -0500
parents 80debdaa4f65
children
rev   line source
bgneal@0 1 env = Environment(
bgneal@2 2 tools = ['default', 'cxxtest'],
bgneal@5 3 CXXFLAGS='-std=c++0x -Wall -Wextra -pedantic -O3',
bgneal@2 4 CPPPATH='#/enigma',
bgneal@2 5 LIBS='enigma',
bgneal@2 6 LIBPATH='#/build',
bgneal@0 7 )
bgneal@0 8
bgneal@0 9 SConscript(['enigma/SConscript'], exports='env', variant_dir='build', duplicate=0)