Skip to content

Commit

Permalink
#435 apply signExec to Microsoft.UI.UIAutomation.dll
Browse files Browse the repository at this point in the history
  • Loading branch information
nishimotz committed Feb 2, 2024
1 parent 7ff301b commit d35ea82
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion nvdaHelper/archBuild_sconscript
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,9 @@ if TARGET_ARCH=='x86':
if signExec:
env.AddPostAction(win10localLib[0],[signExec])
env.Install(libInstallDir,win10localLib)
MSUIA_lib_outDir,MSUIA_include_outDir = thirdPartyEnv.SConscript('microsoft-ui-uiautomation/sconscript')
MSUIA_lib_outDir, MSUIA_include_outDir, MSUIA_wrapper_libs = thirdPartyEnv.SConscript('microsoft-ui-uiautomation/sconscript')
if signExec:
env.AddPostAction(MSUIA_wrapper_libs[0], signExec)
Export('MSUIA_lib_outDir')
Export('MSUIA_include_outDir')
UIARemoteLib=env.SConscript('UIARemote/sconscript')
Expand Down
2 changes: 1 addition & 1 deletion nvdaHelper/microsoft-ui-uiautomation/sconscript
Original file line number Diff line number Diff line change
Expand Up @@ -135,4 +135,4 @@ MSUIA_abstraction_headers = env.Install(

env.Depends(MSUIA_abstraction_headers,[MSUIA_wrapper_header,MSUIA_wrapper_impl])

Return(['MSUIA_lib_outDir','MSUIA_include_outDir'])
Return(['MSUIA_lib_outDir', 'MSUIA_include_outDir', 'MSUIA_wrapper_libs'])

0 comments on commit d35ea82

Please sign in to comment.