forked from Skeen/HearthstoneBot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSConscript
27 lines (20 loc) · 867 Bytes
/
SConscript
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import os
# Get an instance to our environment
env = Environment()
# Enable automatic help generation
#SConscript('conf/scons/Scons_Help_script.py', exports = ['env'])
# Help header and footer
#env.jHelpHead("The following targets are supported;")
#env.jHelpFoot("For additional information refer to the webpage.")
# Include helpers
SConscript('conf/scons/Scons_DirectoryHelper_script.py', exports = ['env'])
SConscript('conf/scons/builders/c_sharp.py', exports = ['env'])
env['CSC'] = "\"C:/Program Files (x86)/Mono-3.2.3/bin/gmcs.bat\""
env['CSCWIN'] = False
env['CSCFLAGS'] = " -debug "
# Start searching in project folder
SConscript('projects/SConscript', variant_dir = "build", exports = ['env'], duplicate=0)
# Set the default target (compile the kernel, make image, run it)
env.Default('projects/Release-ZIP')
# Generate the help target
#env.jGenHelp()