parent
53881fdcfe
commit
b97d8aac2e
|
|
@ -24,14 +24,17 @@ image:
|
||||||
|
|
||||||
build: off
|
build: off
|
||||||
|
|
||||||
# project: cryptest.sln
|
# Extra copy gyrations due to broken MSbuild. Run 'make appveyor' to update the vcxproj files. Also see
|
||||||
# verbosity: minimal
|
# https://stackoverflow.com/questions/45474857/why-does-appveyor-use-vs2010-tools-for-vs2015-image
|
||||||
# parallel: true
|
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
|
|
||||||
- cmd: >-
|
- cmd: >-
|
||||||
|
|
||||||
|
copy /y TestScripts\cryptlib.vcxproj .
|
||||||
|
|
||||||
|
copy /y TestScripts\cryptest.vcxproj .
|
||||||
|
|
||||||
msbuild /t:Build /p:platform=%platform%;configuration=%configuration% cryptlib.vcxproj
|
msbuild /t:Build /p:platform=%platform%;configuration=%configuration% cryptlib.vcxproj
|
||||||
|
|
||||||
msbuild /t:Build /p:platform=%platform%;configuration=%configuration% cryptest.vcxproj
|
msbuild /t:Build /p:platform=%platform%;configuration=%configuration% cryptest.vcxproj
|
||||||
|
|
@ -47,8 +50,8 @@ test_script:
|
||||||
# - https://stackoverflow.com/questions/43423761/cant-perform-64-bit-testing-under-appveyor
|
# - https://stackoverflow.com/questions/43423761/cant-perform-64-bit-testing-under-appveyor
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
- provider: Email
|
- provider: Email
|
||||||
to:
|
to:
|
||||||
- cryptopp-build@googlegroups.com
|
- cryptopp-build@googlegroups.com
|
||||||
on_build_success: true
|
on_build_success: true
|
||||||
on_build_failure: true
|
on_build_failure: true
|
||||||
|
|
|
||||||
|
|
@ -652,6 +652,13 @@ ifeq ($(strip $(DOXYGEN_DIRECTORY)),)
|
||||||
DOXYGEN_DIRECTORY := html-docs
|
DOXYGEN_DIRECTORY := html-docs
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# Extra copy gyrations due to broken MSbuild. Run 'make appveyor' to update the vcxproj files. Also see
|
||||||
|
# https://stackoverflow.com/questions/45474857/why-does-appveyor-use-vs2010-tools-for-vs2015-image
|
||||||
|
.PHONY: appveyor
|
||||||
|
appveyor:
|
||||||
|
sed 's|Toolset>v100|Toolset>v140|g;s|ToolsVersion="4.0"|ToolsVersion="14.0"|g' cryptlib.vcxproj > TestScripts/cryptlib.vcxproj
|
||||||
|
sed 's|Toolset>v100|Toolset>v140|g;ToolsVersion="4.0"|ToolsVersion="14.0"|g' cryptest.vcxproj > TestScripts/cryptest.vcxproj
|
||||||
|
|
||||||
# Builds the documentation. Directory name is ref563, ref570, etc.
|
# Builds the documentation. Directory name is ref563, ref570, etc.
|
||||||
.PHONY: docs html
|
.PHONY: docs html
|
||||||
docs html:
|
docs html:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue