Build crash_generation_client explicitly
This commit is contained in:
parent
1fc734826a
commit
f8e50be843
@ -27,12 +27,19 @@ def BuildBreakpad():
|
|||||||
return
|
return
|
||||||
|
|
||||||
gyp = os.path.join(AMBuild.sourceFolder, 'breakpad', 'gyp', 'gyp.bat')
|
gyp = os.path.join(AMBuild.sourceFolder, 'breakpad', 'gyp', 'gyp.bat')
|
||||||
|
|
||||||
gyppath = os.path.join(AMBuild.sourceFolder, 'breakpad', 'src', 'src', 'client', 'windows', 'handler', 'exception_handler.gyp')
|
gyppath = os.path.join(AMBuild.sourceFolder, 'breakpad', 'src', 'src', 'client', 'windows', 'handler', 'exception_handler.gyp')
|
||||||
breakpad.AddCommand(DirectCommand([gyp, '--no-circular-check', gyppath]))
|
breakpad.AddCommand(DirectCommand([gyp, '--no-circular-check', gyppath]))
|
||||||
|
|
||||||
slnpath = os.path.join(AMBuild.sourceFolder, 'breakpad', 'src', 'src', 'client', 'windows', 'handler', 'exception_handler.sln')
|
slnpath = os.path.join(AMBuild.sourceFolder, 'breakpad', 'src', 'src', 'client', 'windows', 'handler', 'exception_handler.sln')
|
||||||
breakpad.AddCommand(DirectCommand(['msbuild', slnpath, '/p:Configuration=Release']))
|
breakpad.AddCommand(DirectCommand(['msbuild', slnpath, '/p:Configuration=Release']))
|
||||||
|
|
||||||
|
gyppath = os.path.join(AMBuild.sourceFolder, 'breakpad', 'src', 'src', 'client', 'windows', 'crash_generation', 'crash_generation.gyp')
|
||||||
|
breakpad.AddCommand(DirectCommand([gyp, '--no-circular-check', gyppath]))
|
||||||
|
|
||||||
|
slnpath = os.path.join(AMBuild.sourceFolder, 'breakpad', 'src', 'src', 'client', 'windows', 'crash_generation', 'crash_generation.sln')
|
||||||
|
breakpad.AddCommand(DirectCommand(['msbuild', slnpath, '/p:Configuration=Release']))
|
||||||
|
|
||||||
def BuildExtension():
|
def BuildExtension():
|
||||||
compiler = SM.DefaultCompiler()
|
compiler = SM.DefaultCompiler()
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user