~nishimotz/nvdajp/releases_2011.1

« back to all changes in this revision

Viewing changes to nvdaHelper/ia2_sconscript

  • Committer: James Teh
  • Date: 2010-11-22 00:13:30 UTC
  • mfrom: (3920.1.21 sconsBuild)
  • Revision ID: jamie@jantrid.net-20101122001330-ilnty0n7cuqna29m
Refactor the build process to allow anyone to prepare the source tree and create binary distributions, portable archives, installers, etc. with a simple command.
scons is used to facilitate this.
See the Building NVDA section of the source readme for details.

Notes:
        * Of course, SCons is now required for anyone running from source.
        * The nvdaHelper build process has now been incorporated into the new build process, so you do not need to run scons from source\NVDAHelper anymore.
        * nvdaHelper builds will no longer be provided on the snapshots page. This means that the Windows SDK and several other dependencies are now required, as documented in the source readme.
        * You should no longer run generate.py, setup.py or makensis directly. Instead, use scons as documented in the source readme.
        * source\include and source\NVDAHelper have been moved out of the source directory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
Import('env')
16
16
 
17
 
idlFile=env.Command("ia2.idl","#../include/ia2/ia2.idl",Copy("$TARGET","$SOURCE"))
 
17
idlFile=env.Command("ia2.idl","#/include/ia2/ia2.idl",Copy("$TARGET","$SOURCE"))
18
18
 
19
19
tlbFile,headerFile,iidSourceFile,proxySourceFile,dlldataSourceFile=env.TypeLibrary(source=idlFile)
20
20
iidObjFile=env.Object(iidSourceFile)