forked from libxmlplusplus/libxmlplusplus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NMake builds: Embed UAC manifest for dom_update_namespace
...if a 32-bit Windows build is being carried out. This will prevent UAC from interfering when the test program is run, as any 32-bit Windows executable with 'update' in its filename will trigger an UAC prompt which will get into our way.
- Loading branch information
Showing
4 changed files
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -77,8 +77,12 @@ $(libxmlxx_OBJS) | |
# $(dependent_objects) | ||
# << | ||
# @-if exist [email protected] mt /manifest [email protected] /outputresource:$@;1 | ||
vs$(VSVER)\$(CFG)\$(PLAT)\dom_update_namespace.exe: $(LIBXMLXX_LIB) $(dom_update_namespace_OBJS) $(DOM_UPDATE_NAMESPACE_MANIFEST) | ||
link $(LDFLAGS) $(dom_update_namespace_OBJS) $(LIBXMLXX_LIB) $(GLIBMM_LIB) $(LIBSIGC_LIB) $(GOBJECT_LIBS) $(LIBXML2_LIBS) /out:$@ | ||
@if not "$(DOM_UPDATE_NAMESPACE_MANIFEST)" == "" mt /manifest $@.manifest /outputresource:$@;1 | ||
|
||
clean: | ||
@-del /f /q vs$(VSVER)\$(CFG)\$(PLAT)\*.exe.manifest | ||
@-del /f /q vs$(VSVER)\$(CFG)\$(PLAT)\*.exe | ||
@-del /f /q vs$(VSVER)\$(CFG)\$(PLAT)\*.dll | ||
@-del /f /q vs$(VSVER)\$(CFG)\$(PLAT)\*.pdb | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters