From 2d20185e77113fa1707af121dd2df22742899fa3 Mon Sep 17 00:00:00 2001 From: Tom Tanner Date: Sat, 14 Mar 2015 14:59:52 +0000 Subject: More sconscripts set up --- scons_configure_template.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 scons_configure_template.py (limited to 'scons_configure_template.py') diff --git a/scons_configure_template.py b/scons_configure_template.py new file mode 100644 index 00000000..10baa234 --- /dev/null +++ b/scons_configure_template.py @@ -0,0 +1,25 @@ +# This python script contains the configuration for scons +# Copy this to scons_configure.py and adjust to taste. + +# Version of Visual Studio to use, if you wish to use a specific version. If you +# don't specify a version, the latest will be picked.. See the scons manual for +# supported values. +#MSVC_VERSION = '10.0Exp' + +# Path to your python install +# You don't really need to set this up but you might if (say) you have a 32- and +# 64-bit python install and scons has been installed for the 64 bit version +#PYTHONPATH=C:\Apps\Python + +# Path to your boost install - it should have a boost/ subdirectory and a stage/ +# subdirectory. The scons script will use stage/lib if there, or the appropriate +# version for your compiler, if you installed the multiple-build version +BOOST_PATH = 'C:\\Apps\\boost_1_55_0' + +# Path to your QT install. This might constrain the version of MSVC you can use. +# This seems to be set by QTCreator +#QTDIR = 'C:\\Apps\\Qt\\4.8.6' + +# Path to zlib. Please read the README file for more information about how this +# needs to be set up +ZLIB_PATH = 'C:\\Apps\\zlib-1.2.8' -- cgit v1.3.1