From 3eb7c1acdd0c04093549683c9f799395696caffa Mon Sep 17 00:00:00 2001 From: Anand Arumugam Date: Fri, 19 Mar 2021 10:38:39 -0700 Subject: [PATCH] Updating mstelemetry portfile for windows Got clienttelemetry.lib to build with MSVC v142 platform toolset. --- tools/ports/mstelemetry/portfile.cmake | 95 +- tools/ports/mstelemetry/v142-build.patch | 5707 ++++++++++++++++++++++ 2 files changed, 5772 insertions(+), 30 deletions(-) create mode 100644 tools/ports/mstelemetry/v142-build.patch diff --git a/tools/ports/mstelemetry/portfile.cmake b/tools/ports/mstelemetry/portfile.cmake index 72c04ab42..555dd8da6 100644 --- a/tools/ports/mstelemetry/portfile.cmake +++ b/tools/ports/mstelemetry/portfile.cmake @@ -4,45 +4,80 @@ message("CMAKE_CURRENT_SOURCE_DIR=${CMAKE_CURRENT_SOURCE_DIR}") message("CMAKE_MODULE_PATH=${CMAKE_MODULE_PATH}") message("CMAKE_CURRENT_LIST_DIR=${CMAKE_CURRENT_LIST_DIR}") -execute_process(COMMAND "${CMAKE_CURRENT_LIST_DIR}/get_repo_name.sh" OUTPUT_VARIABLE REPO_NAME ERROR_QUIET) +if (UNIX) + execute_process(COMMAND "${CMAKE_CURRENT_LIST_DIR}/get_repo_name.sh" OUTPUT_VARIABLE REPO_NAME ERROR_QUIET) +else() + # execute_process(COMMAND git config --get remote.origin.url OUTPUT_VARIABLE REPO_URL ERROR_QUIET) + # message("REPO_URL=${REPO_URL}") + # string(REPLACE "/" ";" REPO_URL_LIST ${REPO_URL}) + # message(REPO_URL_LIST "list = ${REPO_URL_LIST}") + # list(LENGTH ${REPO_URL_LIST} LAST_ITEM) + # list(GET ${REPO_URL_LIST} ${LAST_ITEM} REPO_NAME) +endif() + message("REPO_NAME=${REPO_NAME}") if (DEFINED REPO_NAME) -# Use local snapshot since we already cloned the code -get_filename_component(SOURCE_PATH "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) -message("Using local source snapshot from ${SOURCE_PATH}") + # Use local snapshot since we already cloned the code + get_filename_component(SOURCE_PATH "${CMAKE_CURRENT_LIST_DIR}/../../../" ABSOLUTE) + message("Using local source snapshot from ${SOURCE_PATH}") else() -# Fetch from GitHub master -message("Fetching source code from GitHub...") -vcpkg_from_github( - OUT_SOURCE_PATH SOURCE_PATH - REPO microsoft/cpp_client_telemetry - HEAD_REF master -) + # Fetch from GitHub master + message("Fetching source code from GitHub...") + if (UNIX) + vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO microsoft/cpp_client_telemetry + HEAD_REF master + ) + else() + vcpkg_from_github( + OUT_SOURCE_PATH SOURCE_PATH + REPO microsoft/cpp_client_telemetry + REF 4f60dd3bca305c2c0dd5ec2ed7b91d36b4de6dcf + SHA512 9778df5aa65d95fe1d41739753495d29b3149676e98ac2e802a103604553f4f2b43bc2eb089c2e13dc695f70279287ea79ec6e2926fad03befe8a671f91d36fb + HEAD_REF master + PATCHES ${CMAKE_CURRENT_LIST_DIR}/v142-build.patch + ) + endif() endif() # TODO: it will be slightly cleaner to perform pure CMake or Ninja build, by describing all possible variable options # as separate triplets. Since we have a fairly non-trivial build logic in build.sh script - we use it as-is for now. # build.sh itself should check if we are building under vcpkg and avoid installing deps that are coming from vcpkg. if (UNIX) -vcpkg_execute_build_process( - COMMAND ${SOURCE_PATH}/build.sh noroot - WORKING_DIRECTORY ${SOURCE_PATH}/ - LOGNAME build -) - -vcpkg_execute_build_process( - COMMAND ${SOURCE_PATH}/install.sh ${CURRENT_PACKAGES_DIR} - WORKING_DIRECTORY ${SOURCE_PATH}/ - LOGNAME install -) + vcpkg_execute_build_process( + COMMAND ${SOURCE_PATH}/build.sh noroot + WORKING_DIRECTORY ${SOURCE_PATH}/ + LOGNAME build + ) + + vcpkg_execute_build_process( + COMMAND ${SOURCE_PATH}/install.sh ${CURRENT_PACKAGES_DIR} + WORKING_DIRECTORY ${SOURCE_PATH}/ + LOGNAME install + ) + + file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) else() -# TODO: verify Windows build -vcpkg_execute_build_process( - COMMAND ${SOURCE_PATH}/build-all.bat - WORKING_DIRECTORY ${SOURCE_PATH}/ - LOGNAME build -) -endif() + vcpkg_check_linkage(ONLY_STATIC_LIBRARY) -file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) + vcpkg_install_msbuild( + SOURCE_PATH ${SOURCE_PATH} + PROJECT_SUBPATH Solutions/MSTelemetrySDK.sln + LICENSE_SUBPATH LICENSE + RELEASE_CONFIGURATION Release + DEBUG_CONFIGURATION Debug + OPTIONS /p:MATSDK_SHARED_LIB=1 + PLATFORM ${VCPKG_TARGET_ARCHITECTURE} + PLATFORM_TOOLSET v142 + TARGET sqlite,win32-lib + USE_VCPKG_INTEGRATION + ) + + file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/bin" "${CURRENT_PACKAGES_DIR}/debug/bin") + file(COPY "${SOURCE_PATH}/lib/include/public" DESTINATION "${CURRENT_PACKAGES_DIR}") + file(RENAME "${CURRENT_PACKAGES_DIR}/public" "${CURRENT_PACKAGES_DIR}/include") + file(COPY "${SOURCE_PATH}/LICENSE" DESTINATION "${CURRENT_PACKAGES_DIR}/share/${PORT}") + file(WRITE "${CURRENT_PACKAGES_DIR}/share/${PORT}/copyright" "Refer to LICENSE file") +endif() diff --git a/tools/ports/mstelemetry/v142-build.patch b/tools/ports/mstelemetry/v142-build.patch new file mode 100644 index 000000000..4810b844b --- /dev/null +++ b/tools/ports/mstelemetry/v142-build.patch @@ -0,0 +1,5707 @@ +diff --git a/Solutions/MSTelemetrySDK.sln b/Solutions/MSTelemetrySDK.sln +index 904f20a9..a6bc3ece 100644 +--- a/Solutions/MSTelemetrySDK.sln ++++ b/Solutions/MSTelemetrySDK.sln +@@ -1,6 +1,6 @@ + Microsoft Visual Studio Solution File, Format Version 12.00 +-# Visual Studio 15 +-VisualStudioVersion = 15.0.28307.645 ++# Visual Studio Version 16 ++VisualStudioVersion = 16.0.31105.61 + MinimumVisualStudioVersion = 10.0.40219.1 + Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "sqlite", "..\sqlite\sqlite.vcxproj", "{2EBC7B3C-2AF1-442C-9285-CAB39BBB8C00}" + EndProject +@@ -38,39 +38,6 @@ EndProject + Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "managed", "..\lib\shared\Shared.vcxitems", "{EF859326-2A11-481C-AE8C-03D754F1C412}" + EndProject + Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "include", "include", "{553836FF-B1FD-4B70-AC81-AEC7752F9284}" +- ProjectSection(SolutionItems) = preProject +- ..\lib\include\public\AggregatedMetric.hpp = ..\lib\include\public\AggregatedMetric.hpp +- ..\lib\include\public\CommonFields.h = ..\lib\include\public\CommonFields.h +- ..\lib\include\public\CsProtocol_types.hpp = ..\lib\include\public\CsProtocol_types.hpp +- ..\lib\include\public\ctmacros.hpp = ..\lib\include\public\ctmacros.hpp +- ..\lib\include\public\DebugEvents.hpp = ..\lib\include\public\DebugEvents.hpp +- ..\lib\include\public\Enums.hpp = ..\lib\include\public\Enums.hpp +- ..\lib\include\public\EventProperties.hpp = ..\lib\include\public\EventProperties.hpp +- ..\lib\include\public\EventProperty.hpp = ..\lib\include\public\EventProperty.hpp +- ..\lib\include\public\IAFDClient.hpp = ..\lib\include\public\IAFDClient.hpp +- ..\lib\include\public\ICdsFactory.hpp = ..\lib\include\public\ICdsFactory.hpp +- ..\lib\include\public\IDataInspector.hpp = ..\lib\include\public\IDataInspector.hpp +- ..\lib\include\public\IDataViewer.hpp = ..\lib\include\public\IDataViewer.hpp +- ..\lib\include\public\IDataViewerCollection.hpp = ..\lib\include\public\IDataViewerCollection.hpp +- ..\lib\include\public\IDecorator.hpp = ..\lib\include\public\IDecorator.hpp +- ..\lib\include\public\IECSClient.hpp = ..\lib\include\public\IECSClient.hpp +- ..\lib\include\public\IEventFilter.hpp = ..\lib\include\public\IEventFilter.hpp +- ..\lib\include\public\IEventFilterCollection.hpp = ..\lib\include\public\IEventFilterCollection.hpp +- ..\lib\include\public\IHttpClient.hpp = ..\lib\include\public\IHttpClient.hpp +- ..\lib\include\public\ILogConfiguration.hpp = ..\lib\include\public\ILogConfiguration.hpp +- ..\lib\include\public\ILogger.hpp = ..\lib\include\public\ILogger.hpp +- ..\lib\include\public\ILogManager.hpp = ..\lib\include\public\ILogManager.hpp +- ..\lib\include\public\IModule.hpp = ..\lib\include\public\IModule.hpp +- ..\lib\include\public\IOfflineStorage.hpp = ..\lib\include\public\IOfflineStorage.hpp +- ..\lib\include\public\ISemanticContext.hpp = ..\lib\include\public\ISemanticContext.hpp +- ..\lib\include\public\ITaskDispatcher.hpp = ..\lib\include\public\ITaskDispatcher.hpp +- ..\lib\include\public\LogManager.hpp = ..\lib\include\public\LogManager.hpp +- ..\lib\include\public\LogSessionData.hpp = ..\lib\include\public\LogSessionData.hpp +- ..\lib\include\public\mat.h = ..\lib\include\public\mat.h +- ..\lib\include\public\PayloadDecoder.hpp = ..\lib\include\public\PayloadDecoder.hpp +- ..\lib\include\public\Version.hpp = ..\lib\include\public\Version.hpp +- ..\lib\include\public\Version.hpp.template = ..\lib\include\public\Version.hpp.template +- EndProjectSection + EndProject + Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "win32-lib", "win32-lib\win32-lib.vcxproj", "{1DC6B38A-B390-34CE-907F-4958807A3D42}" + EndProject +@@ -164,42 +131,19 @@ Global + GlobalSection(SharedMSBuildProjectFiles) = preSolution + ..\lib\pal\universal\universal.vcxitems*{10e9165b-49d1-4d1c-8248-334b9905b9cc}*SharedItemsImports = 9 + ..\lib\pal\desktop\desktop.vcxitems*{10e9165b-49d1-4d1c-8248-334b9905b9cd}*SharedItemsImports = 9 +- ..\lib\modules\azmon\azmon.vcxitems*{1dc6b38a-b390-34ce-907f-4958807a3d42}*SharedItemsImports = 4 +- ..\lib\modules\cds\cds.vcxitems*{1dc6b38a-b390-34ce-907f-4958807a3d42}*SharedItemsImports = 4 +- ..\lib\modules\dataviewer\dataviewer.vcxitems*{1dc6b38a-b390-34ce-907f-4958807a3d42}*SharedItemsImports = 4 +- ..\lib\modules\exp\exp.vcxitems*{1dc6b38a-b390-34ce-907f-4958807a3d42}*SharedItemsImports = 4 +- ..\lib\modules\filter\filter.vcxitems*{1dc6b38a-b390-34ce-907f-4958807a3d42}*SharedItemsImports = 4 +- ..\lib\modules\privacyguard\privacyguard.vcxitems*{1dc6b38a-b390-34ce-907f-4958807a3d42}*SharedItemsImports = 4 + ..\lib\pal\desktop\desktop.vcxitems*{1dc6b38a-b390-34ce-907f-4958807a3d42}*SharedItemsImports = 4 + Clienttelemetry\Clienttelemetry.vcxitems*{1dc6b38a-b390-34ce-907f-4958807a3d42}*SharedItemsImports = 4 + ..\lib\pal\desktop\desktop.vcxitems*{1dc6b38a-b390-34ce-907f-4958807a3d43}*SharedItemsImports = 4 + Clienttelemetry\Clienttelemetry.vcxitems*{1dc6b38a-b390-34ce-907f-4958807a3d43}*SharedItemsImports = 4 + ..\lib\modules\dataviewer\dataviewer.vcxitems*{20ad4f2b-3f98-4baf-8144-e1e7682a7927}*SharedItemsImports = 9 +- ..\lib\modules\azmon\azmon.vcxitems*{216a8e97-21f7-4bef-9e52-7f772c177c32}*SharedItemsImports = 4 +- ..\lib\modules\cds\cds.vcxitems*{216a8e97-21f7-4bef-9e52-7f772c177c32}*SharedItemsImports = 4 +- ..\lib\modules\dataviewer\dataviewer.vcxitems*{216a8e97-21f7-4bef-9e52-7f772c177c32}*SharedItemsImports = 4 +- ..\lib\modules\exp\exp.vcxitems*{216a8e97-21f7-4bef-9e52-7f772c177c32}*SharedItemsImports = 4 +- ..\lib\modules\filter\filter.vcxitems*{216a8e97-21f7-4bef-9e52-7f772c177c32}*SharedItemsImports = 4 +- ..\lib\modules\privacyguard\privacyguard.vcxitems*{216a8e97-21f7-4bef-9e52-7f772c177c32}*SharedItemsImports = 4 + ..\lib\pal\desktop\desktop.vcxitems*{216a8e97-21f7-4bef-9e52-7f772c177c32}*SharedItemsImports = 4 + Clienttelemetry\Clienttelemetry.vcxitems*{216a8e97-21f7-4bef-9e52-7f772c177c32}*SharedItemsImports = 4 + ..\lib\pal\desktop\desktop.vcxitems*{216a8e97-21f7-4bef-9e52-7f772c177c33}*SharedItemsImports = 4 + Clienttelemetry\Clienttelemetry.vcxitems*{216a8e97-21f7-4bef-9e52-7f772c177c33}*SharedItemsImports = 4 + ..\lib\modules\exp\exp.vcxitems*{2bfafe9a-45b0-4c02-841e-03e47fd2e340}*SharedItemsImports = 9 +- ..\lib\modules\azmon\azmon.vcxitems*{434c594f-cde0-3690-ac0a-9ed854b74092}*SharedItemsImports = 4 +- ..\lib\modules\cds\cds.vcxitems*{434c594f-cde0-3690-ac0a-9ed854b74092}*SharedItemsImports = 4 +- ..\lib\modules\dataviewer\dataviewer.vcxitems*{434c594f-cde0-3690-ac0a-9ed854b74092}*SharedItemsImports = 4 +- ..\lib\modules\filter\filter.vcxitems*{434c594f-cde0-3690-ac0a-9ed854b74092}*SharedItemsImports = 4 +- ..\lib\modules\privacyguard\privacyguard.vcxitems*{434c594f-cde0-3690-ac0a-9ed854b74092}*SharedItemsImports = 4 + ..\lib\pal\desktop\desktop.vcxitems*{434c594f-cde0-3690-ac0a-9ed854b74092}*SharedItemsImports = 4 + Clienttelemetry\Clienttelemetry.vcxitems*{434c594f-cde0-3690-ac0a-9ed854b74092}*SharedItemsImports = 4 + Clienttelemetry\Clienttelemetry.vcxitems*{45d41acc-2c3c-43d2-bc10-02aa73ffc7c7}*SharedItemsImports = 9 +- ..\lib\modules\azmon\azmon.vcxitems*{49077dbf-e363-4d2d-8334-636569a771b6}*SharedItemsImports = 4 +- ..\lib\modules\cds\cds.vcxitems*{49077dbf-e363-4d2d-8334-636569a771b6}*SharedItemsImports = 4 +- ..\lib\modules\dataviewer\dataviewer.vcxitems*{49077dbf-e363-4d2d-8334-636569a771b6}*SharedItemsImports = 4 +- ..\lib\modules\exp\exp.vcxitems*{49077dbf-e363-4d2d-8334-636569a771b6}*SharedItemsImports = 4 +- ..\lib\modules\filter\filter.vcxitems*{49077dbf-e363-4d2d-8334-636569a771b6}*SharedItemsImports = 4 +- ..\lib\modules\privacyguard\privacyguard.vcxitems*{49077dbf-e363-4d2d-8334-636569a771b6}*SharedItemsImports = 4 + ..\lib\pal\universal\universal.vcxitems*{49077dbf-e363-4d2d-8334-636569a771b6}*SharedItemsImports = 4 + ..\lib\shared\Shared.vcxitems*{49077dbf-e363-4d2d-8334-636569a771b6}*SharedItemsImports = 4 + Clienttelemetry\Clienttelemetry.vcxitems*{49077dbf-e363-4d2d-8334-636569a771b6}*SharedItemsImports = 4 +@@ -213,25 +157,14 @@ Global + Clienttelemetry\Clienttelemetry.vcxitems*{57a81ed9-5603-471f-afee-9656da74178d}*SharedItemsImports = 4 + ..\lib\decoder\decoder.vcxitems*{65b6880e-fc36-443d-a7a5-0e6cda6523ac}*SharedItemsImports = 9 + ..\lib\modules\azmon\azmon.vcxitems*{6dc5ab1d-3d64-4c52-8d8e-d9a8b0c16f14}*SharedItemsImports = 9 +- ..\lib\modules\azmon\azmon.vcxitems*{7a75748d-5d6b-48a5-83cb-f5f439133d59}*SharedItemsImports = 4 +- ..\lib\modules\cds\cds.vcxitems*{7a75748d-5d6b-48a5-83cb-f5f439133d59}*SharedItemsImports = 4 +- ..\lib\modules\dataviewer\dataviewer.vcxitems*{7a75748d-5d6b-48a5-83cb-f5f439133d59}*SharedItemsImports = 4 +- ..\lib\modules\exp\exp.vcxitems*{7a75748d-5d6b-48a5-83cb-f5f439133d59}*SharedItemsImports = 4 +- ..\lib\modules\filter\filter.vcxitems*{7a75748d-5d6b-48a5-83cb-f5f439133d59}*SharedItemsImports = 4 +- ..\lib\modules\privacyguard\privacyguard.vcxitems*{7a75748d-5d6b-48a5-83cb-f5f439133d59}*SharedItemsImports = 4 + ..\lib\pal\universal\universal.vcxitems*{7a75748d-5d6b-48a5-83cb-f5f439133d59}*SharedItemsImports = 4 + Clienttelemetry\Clienttelemetry.vcxitems*{7a75748d-5d6b-48a5-83cb-f5f439133d59}*SharedItemsImports = 4 +- ..\lib\modules\cds\cds.vcxitems*{e1f6ca48-3bbf-4378-8d1e-6bbf4869db5b}*SharedItemsImports = 9 +- ..\lib\modules\cds\cds.vcxitems*{fe79fb3a-b3ef-38df-b7a4-11277db72b39}*SharedItemsImports = 4 + ..\lib\modules\filter\filter.vcxitems*{d74e42ec-c6ee-4944-b92a-eb711be002a9}*SharedItemsImports = 9 + ..\lib\shared\Shared.vcxitems*{dc91621e-a203-42df-8e03-3a23dd0602b1}*SharedItemsImports = 4 ++ ..\lib\modules\cds\cds.vcxitems*{e1f6ca48-3bbf-4378-8d1e-6bbf4869db5b}*SharedItemsImports = 9 + ..\lib\modules\privacyguard\privacyguard.vcxitems*{e1f6ca48-3bbf-4378-8d1e-6bbf4869db5b}*SharedItemsImports = 9 + ..\lib\shared\Shared.vcxitems*{ef859326-2a11-481c-ae8c-03d754f1c412}*SharedItemsImports = 9 + ..\lib\decoder\decoder.vcxitems*{fe79fb3a-b3ef-38df-b7a4-11277db72b39}*SharedItemsImports = 4 +- ..\lib\modules\azmon\azmon.vcxitems*{fe79fb3a-b3ef-38df-b7a4-11277db72b39}*SharedItemsImports = 4 +- ..\lib\modules\dataviewer\dataviewer.vcxitems*{fe79fb3a-b3ef-38df-b7a4-11277db72b39}*SharedItemsImports = 4 +- ..\lib\modules\filter\filter.vcxitems*{fe79fb3a-b3ef-38df-b7a4-11277db72b39}*SharedItemsImports = 4 +- ..\lib\modules\privacyguard\privacyguard.vcxitems*{fe79fb3a-b3ef-38df-b7a4-11277db72b39}*SharedItemsImports = 4 + ..\lib\pal\desktop\desktop.vcxitems*{fe79fb3a-b3ef-38df-b7a4-11277db72b39}*SharedItemsImports = 4 + Clienttelemetry\Clienttelemetry.vcxitems*{fe79fb3a-b3ef-38df-b7a4-11277db72b39}*SharedItemsImports = 4 + EndGlobalSection +diff --git a/Solutions/net40/net40.vcxproj b/Solutions/net40/net40.vcxproj +index 12444a52..ef11fb6c 100644 +--- a/Solutions/net40/net40.vcxproj ++++ b/Solutions/net40/net40.vcxproj +@@ -27,6 +27,7 @@ + net40 + true + true ++ 10.0 + + + +@@ -35,6 +36,7 @@ + false + Unicode + false ++ v142 + + + DynamicLibrary +@@ -42,6 +44,7 @@ + true + Unicode + false ++ v142 + + + DynamicLibrary +@@ -49,6 +52,7 @@ + Unicode + false + false ++ v142 + + + DynamicLibrary +@@ -56,6 +60,7 @@ + false + Unicode + false ++ v142 + + + +diff --git a/Solutions/win10-cs/win10-cs.vcxproj b/Solutions/win10-cs/win10-cs.vcxproj +index 147ae1e4..0a7a0ea7 100644 +--- a/Solutions/win10-cs/win10-cs.vcxproj ++++ b/Solutions/win10-cs/win10-cs.vcxproj +@@ -47,6 +47,7 @@ + 8.2 + 10.0.10240.0 + true ++ 10.0 + + + TRUE +@@ -55,38 +56,46 @@ + + DynamicLibrary + true ++ v142 + + + DynamicLibrary + true ++ v142 + + + DynamicLibrary + true ++ v142 + + + DynamicLibrary + true ++ v142 + + + DynamicLibrary + false + true ++ v142 + + + DynamicLibrary + false + true ++ v142 + + + DynamicLibrary + false + true ++ v142 + + + DynamicLibrary + false + true ++ v142 + + + +diff --git a/Solutions/win10-lib/win10-lib.vcxproj b/Solutions/win10-lib/win10-lib.vcxproj +index 30bcf573..a38778d7 100644 +--- a/Solutions/win10-lib/win10-lib.vcxproj ++++ b/Solutions/win10-lib/win10-lib.vcxproj +@@ -48,43 +48,52 @@ + 10.0 + win10-lib + true ++ 10.0 + + + + StaticLibrary + true ++ v142 + + + StaticLibrary + true ++ v142 + + + StaticLibrary + true ++ v142 + + + StaticLibrary + true ++ v142 + + + StaticLibrary + false + true ++ v142 + + + StaticLibrary + false + true ++ v142 + + + StaticLibrary + false + true ++ v142 + + + StaticLibrary + false + true ++ v142 + + + +@@ -95,7 +104,7 @@ + + + +- ++ + + + +diff --git a/Solutions/win32-dll/win32-dll.vcxproj b/Solutions/win32-dll/win32-dll.vcxproj +index 4ae04059..5df3dd01 100644 +--- a/Solutions/win32-dll/win32-dll.vcxproj ++++ b/Solutions/win32-dll/win32-dll.vcxproj +@@ -44,6 +44,7 @@ + ClientTelemetry + win32-dll + true ++ 10.0 + + + TRUE +@@ -57,36 +58,42 @@ + true + Unicode + false ++ v142 + + + DynamicLibrary + false + false + Unicode ++ v142 + + + DynamicLibrary + true + Unicode + false ++ v142 + + + DynamicLibrary + true + Unicode + false ++ v142 + + + DynamicLibrary + false + false + Unicode ++ v142 + + + DynamicLibrary + false + false + Unicode ++ v142 + + + +diff --git a/Solutions/win32-lib/win32-lib.vcxproj b/Solutions/win32-lib/win32-lib.vcxproj +index c1d9667a..6880136b 100644 +--- a/Solutions/win32-lib/win32-lib.vcxproj ++++ b/Solutions/win32-lib/win32-lib.vcxproj +@@ -57,6 +57,7 @@ + ClientTelemetry + win32-lib + true ++ 10.0 + + + OACR +@@ -67,48 +68,56 @@ + true + Unicode + false ++ v142 + + + StaticLibrary + true + Unicode + false ++ v142 + + + StaticLibrary + false + false + Unicode ++ v142 + + + StaticLibrary + false + false + Unicode ++ v142 + + + StaticLibrary + true + Unicode + false ++ v142 + + + StaticLibrary + true + Unicode + false ++ v142 + + + StaticLibrary + true + Unicode + false ++ v142 + + + StaticLibrary + true + Unicode + false ++ v142 + + + StaticLibrary +@@ -116,24 +125,28 @@ + false + Unicode + win-x64_vs2015-crtdynamic-release ++ v142 + + + StaticLibrary + false + false + Unicode ++ v142 + + + StaticLibrary + false + false + Unicode ++ v142 + + + StaticLibrary + false + false + Unicode ++ v142 + + + +diff --git a/Solutions/win32-mini-dll/win32-mini-dll.vcxproj b/Solutions/win32-mini-dll/win32-mini-dll.vcxproj +index 97892580..b8c5eeef 100644 +--- a/Solutions/win32-mini-dll/win32-mini-dll.vcxproj ++++ b/Solutions/win32-mini-dll/win32-mini-dll.vcxproj +@@ -44,6 +44,7 @@ + ClientTelemetry + win32-mini-dll + true ++ 10.0 + + + OACR +@@ -54,36 +55,42 @@ + true + Unicode + false ++ v142 + + + DynamicLibrary + false + false + Unicode ++ v142 + + + DynamicLibrary + true + Unicode + false ++ v142 + + + DynamicLibrary + true + Unicode + false ++ v142 + + + DynamicLibrary + false + false + Unicode ++ v142 + + + DynamicLibrary + false + false + Unicode ++ v142 + + + +diff --git a/Solutions/win32-mini-lib/win32-mini-lib.vcxproj b/Solutions/win32-mini-lib/win32-mini-lib.vcxproj +index edc2828f..6da2528e 100644 +--- a/Solutions/win32-mini-lib/win32-mini-lib.vcxproj ++++ b/Solutions/win32-mini-lib/win32-mini-lib.vcxproj +@@ -57,6 +57,7 @@ + ClientTelemetry + win32-mini-lib + true ++ 10.0 + + + OACR +@@ -67,72 +68,84 @@ + true + Unicode + false ++ v142 + + + StaticLibrary + true + Unicode + false ++ v142 + + + StaticLibrary + false + false + Unicode ++ v142 + + + StaticLibrary + false + false + Unicode ++ v142 + + + StaticLibrary + true + Unicode + false ++ v142 + + + StaticLibrary + true + Unicode + false ++ v142 + + + StaticLibrary + true + Unicode + false ++ v142 + + + StaticLibrary + true + Unicode + false ++ v142 + + + StaticLibrary + false + false + Unicode ++ v142 + + + StaticLibrary + false + false + Unicode ++ v142 + + + StaticLibrary + false + false + Unicode ++ v142 + + + StaticLibrary + false + false + Unicode ++ v142 + + + +diff --git a/examples/c/SampleC/SampleC.vcxproj b/examples/c/SampleC/SampleC.vcxproj +index a4901f2b..9dbc8ca4 100644 +--- a/examples/c/SampleC/SampleC.vcxproj ++++ b/examples/c/SampleC/SampleC.vcxproj +@@ -20,12 +20,14 @@ + Application + true + Unicode ++ v142 + + + Application + false + true + Unicode ++ v142 + + + +diff --git a/examples/cpp/EventSender/EventSender.vcxproj b/examples/cpp/EventSender/EventSender.vcxproj +index b55221e1..ed4d921a 100644 +--- a/examples/cpp/EventSender/EventSender.vcxproj ++++ b/examples/cpp/EventSender/EventSender.vcxproj +@@ -24,29 +24,34 @@ + {7DBFBA1F-520D-4C93-A33E-DD92FD4F9222} + Win32Proj + EventSender ++ 10.0 + + + + Application + true + Unicode ++ v142 + + + Application + false + true + Unicode ++ v142 + + + Application + true + Unicode ++ v142 + + + Application + false + true + Unicode ++ v142 + + + +diff --git a/examples/cpp/EventSender/EventSender.vcxproj.filters b/examples/cpp/EventSender/EventSender.vcxproj.filters +index f5b9ccda..edd3c98f 100644 +--- a/examples/cpp/EventSender/EventSender.vcxproj.filters ++++ b/examples/cpp/EventSender/EventSender.vcxproj.filters +@@ -1,117 +1,22 @@ +- +- +- +- +- {4FC737F1-C7A5-4376-A066-2A32D752A2FF} +- cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx +- +- +- {93995380-89BD-4b04-88EB-625FBE52EBFB} +- h;hh;hpp;hxx;hm;inl;inc;ipp;xsd +- +- +- {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} +- rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms +- +- +- +- +- Source Files +- +- +- +- +- +- Header Files +- +- +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- +- Header Files +- +- ++ ++ ++ ++ ++ {4FC737F1-C7A5-4376-A066-2A32D752A2FF} ++ cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx ++ ++ ++ {93995380-89BD-4b04-88EB-625FBE52EBFB} ++ h;hh;hpp;hxx;hm;inl;inc;ipp;xsd ++ ++ ++ {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} ++ rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms ++ ++ ++ ++ ++ Source Files ++ ++ + +\ No newline at end of file +diff --git a/examples/cpp/SampleCpp/SampleCpp.vcxproj b/examples/cpp/SampleCpp/SampleCpp.vcxproj +index f8154a7e..ab8b5fb6 100644 +--- a/examples/cpp/SampleCpp/SampleCpp.vcxproj ++++ b/examples/cpp/SampleCpp/SampleCpp.vcxproj +@@ -79,124 +79,124 @@ + {86AC752C-5687-4377-841E-943D9BEEF360} + Win32Proj + SampleCpp +- 10.0.17134.0 ++ 10.0 + true + + + + Application + true +- v141 ++ v142 + Unicode + + + Application + true +- v141 ++ v142 + Unicode + + + Application + true +- v141 ++ v142 + Unicode + + + Application + false +- v141 ++ v142 + true + Unicode + + + Application + false +- v141 ++ v142 + true + Unicode + + + Application + false +- v141 ++ v142 + true + Unicode + + + Application + true +- v141 ++ v142 + Unicode + + + Application + true +- v141 ++ v142 + Unicode + + + Application + true +- v141 ++ v142 + Unicode + + + Application + true +- v141 ++ v142 + Unicode + + + Application + true +- v141 ++ v142 + Unicode + + + Application + true +- v141 ++ v142 + Unicode + + + Application + false +- v141 ++ v142 + true + Unicode + + + Application + false +- v141 ++ v142 + true + Unicode + + + Application + false +- v141 ++ v142 + true + Unicode + + + Application + false +- v141 ++ v142 + true + Unicode + + + Application + false +- v141 ++ v142 + true + Unicode + + + Application + false +- v141 ++ v142 + true + Unicode + +diff --git a/examples/cpp/SampleCppLogManagers/SampleCppLogManagers.vcxproj b/examples/cpp/SampleCppLogManagers/SampleCppLogManagers.vcxproj +index be49c0cf..1466a4d8 100644 +--- a/examples/cpp/SampleCppLogManagers/SampleCppLogManagers.vcxproj ++++ b/examples/cpp/SampleCppLogManagers/SampleCppLogManagers.vcxproj +@@ -1,200 +1,200 @@ +- +- +- +- +- Debug +- Win32 +- +- +- Release +- Win32 +- +- +- Debug +- x64 +- +- +- Release +- x64 +- +- +- +- 15.0 +- {77053F92-F003-4D1C-A489-1DEB7CFEA4EC} +- Win32Proj +- SampleCppLogManagers +- 10.0.17134.0 +- +- +- +- Application +- true +- v141 +- Unicode +- +- +- Application +- false +- v141 +- true +- Unicode +- +- +- Application +- true +- v141 +- Unicode +- +- +- Application +- false +- v141 +- true +- Unicode +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- true +- $(VC_IncludePath);$(WindowsSDK_IncludePath);$(SolutionDir)\..\lib\include\public;$(SolutionDir)\..\lib\pal\ +- $(ProjectDir) +- $(Configuration)\ +- $(LibraryPath) +- +- +- true +- $(ProjectDir) +- $(VC_IncludePath);$(WindowsSDK_IncludePath);$(SolutionDir)\..\lib\include\public;$(SolutionDir)\..\lib\pal\ +- $(LibraryPath) +- +- +- false +- $(VC_IncludePath);$(WindowsSDK_IncludePath);$(SolutionDir)\..\lib\include\public +- +- +- false +- $(VC_IncludePath);$(WindowsSDK_IncludePath);$(SolutionDir)\..\lib\include\public +- +- +- +- NotUsing +- Level3 +- Disabled +- true +- WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) +- true +- pch.h +- +- +- Console +- true +- +- +- $(MSBuildProjectDirectory)\deploy-dll.cmd $(Configuration) $(Platform) $(OutDir) +- +- +- Deploy DLLs +- +- +- +- +- NotUsing +- Level3 +- Disabled +- true +- _DEBUG;_CONSOLE;%(PreprocessorDefinitions) +- true +- pch.h +- +- +- Console +- true +- +- +- $(MSBuildProjectDirectory)\deploy-dll.cmd $(Configuration) $(Platform) $(OutDir) +- +- +- Deploy DLLs +- +- +- +- +- NotUsing +- Level3 +- MaxSpeed +- true +- true +- true +- WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) +- true +- pch.h +- +- +- Console +- true +- true +- true +- +- +- $(MSBuildProjectDirectory)\deploy-dll.cmd $(Configuration) $(Platform) $(OutDir) +- +- +- Deploy DLLs +- +- +- +- +- NotUsing +- Level3 +- MaxSpeed +- true +- true +- true +- NDEBUG;_CONSOLE;%(PreprocessorDefinitions) +- true +- pch.h +- +- +- Console +- true +- true +- true +- +- +- $(MSBuildProjectDirectory)\deploy-dll.cmd $(Configuration) $(Platform) $(OutDir) +- +- +- Deploy DLLs +- +- +- +- +- +- +- +- {216a8e97-21f7-4bef-9e52-7f772c177c32} +- +- +- +- +- +- +- +- +- ++ ++ ++ ++ ++ Debug ++ Win32 ++ ++ ++ Release ++ Win32 ++ ++ ++ Debug ++ x64 ++ ++ ++ Release ++ x64 ++ ++ ++ ++ 15.0 ++ {77053F92-F003-4D1C-A489-1DEB7CFEA4EC} ++ Win32Proj ++ SampleCppLogManagers ++ 10.0 ++ ++ ++ ++ Application ++ true ++ v142 ++ Unicode ++ ++ ++ Application ++ false ++ v142 ++ true ++ Unicode ++ ++ ++ Application ++ true ++ v142 ++ Unicode ++ ++ ++ Application ++ false ++ v142 ++ true ++ Unicode ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ true ++ $(VC_IncludePath);$(WindowsSDK_IncludePath);$(SolutionDir)\..\lib\include\public;$(SolutionDir)\..\lib\pal\ ++ $(ProjectDir) ++ $(Configuration)\ ++ $(LibraryPath) ++ ++ ++ true ++ $(ProjectDir) ++ $(VC_IncludePath);$(WindowsSDK_IncludePath);$(SolutionDir)\..\lib\include\public;$(SolutionDir)\..\lib\pal\ ++ $(LibraryPath) ++ ++ ++ false ++ $(VC_IncludePath);$(WindowsSDK_IncludePath);$(SolutionDir)\..\lib\include\public ++ ++ ++ false ++ $(VC_IncludePath);$(WindowsSDK_IncludePath);$(SolutionDir)\..\lib\include\public ++ ++ ++ ++ NotUsing ++ Level3 ++ Disabled ++ true ++ WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) ++ true ++ pch.h ++ ++ ++ Console ++ true ++ ++ ++ $(MSBuildProjectDirectory)\deploy-dll.cmd $(Configuration) $(Platform) $(OutDir) ++ ++ ++ Deploy DLLs ++ ++ ++ ++ ++ NotUsing ++ Level3 ++ Disabled ++ true ++ _DEBUG;_CONSOLE;%(PreprocessorDefinitions) ++ true ++ pch.h ++ ++ ++ Console ++ true ++ ++ ++ $(MSBuildProjectDirectory)\deploy-dll.cmd $(Configuration) $(Platform) $(OutDir) ++ ++ ++ Deploy DLLs ++ ++ ++ ++ ++ NotUsing ++ Level3 ++ MaxSpeed ++ true ++ true ++ true ++ WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) ++ true ++ pch.h ++ ++ ++ Console ++ true ++ true ++ true ++ ++ ++ $(MSBuildProjectDirectory)\deploy-dll.cmd $(Configuration) $(Platform) $(OutDir) ++ ++ ++ Deploy DLLs ++ ++ ++ ++ ++ NotUsing ++ Level3 ++ MaxSpeed ++ true ++ true ++ true ++ NDEBUG;_CONSOLE;%(PreprocessorDefinitions) ++ true ++ pch.h ++ ++ ++ Console ++ true ++ true ++ true ++ ++ ++ $(MSBuildProjectDirectory)\deploy-dll.cmd $(Configuration) $(Platform) $(OutDir) ++ ++ ++ Deploy DLLs ++ ++ ++ ++ ++ ++ ++ ++ {216a8e97-21f7-4bef-9e52-7f772c177c32} ++ ++ ++ ++ ++ ++ ++ ++ ++ + +\ No newline at end of file +diff --git a/examples/cpp/SampleCppMini/SampleCppMini.vcxproj b/examples/cpp/SampleCppMini/SampleCppMini.vcxproj +index a2891ace..e232a2e4 100644 +--- a/examples/cpp/SampleCppMini/SampleCppMini.vcxproj ++++ b/examples/cpp/SampleCppMini/SampleCppMini.vcxproj +@@ -79,35 +79,35 @@ + {86AC752C-5687-4377-841E-943D9BEEF361} + Win32Proj + SampleCppMini +- 10.0.17763.0 ++ 10.0 + true + + + + Application + true +- v141 ++ v142 + Unicode + Static + + + Application + true +- v141 ++ v142 + Unicode + Static + + + Application + true +- v141 ++ v142 + Unicode + Static + + + Application + false +- v141 ++ v142 + true + Unicode + Static +@@ -115,7 +115,7 @@ + + Application + false +- v141 ++ v142 + true + Unicode + Static +@@ -123,7 +123,7 @@ + + Application + false +- v141 ++ v142 + true + Unicode + Static +@@ -131,49 +131,49 @@ + + Application + true +- v141 ++ v142 + Unicode + Static + + + Application + true +- v141 ++ v142 + Unicode + Static + + + Application + true +- v141 ++ v142 + Unicode + Static + + + Application + true +- v141 ++ v142 + Unicode + Static + + + Application + true +- v141 ++ v142 + Unicode + Static + + + Application + true +- v141 ++ v142 + Unicode + Static + + + Application + false +- v141 ++ v142 + true + Unicode + Static +@@ -181,7 +181,7 @@ + + Application + false +- v141 ++ v142 + true + Unicode + Static +@@ -189,7 +189,7 @@ + + Application + false +- v141 ++ v142 + true + Unicode + Static +@@ -197,7 +197,7 @@ + + Application + false +- v141 ++ v142 + true + Unicode + Static +@@ -205,7 +205,7 @@ + + Application + false +- v141 ++ v142 + true + Unicode + Static +@@ -213,7 +213,7 @@ + + Application + false +- v141 ++ v142 + true + Unicode + Static +diff --git a/examples/cpp/SampleCppUWP/SampleCppUWP.vcxproj b/examples/cpp/SampleCppUWP/SampleCppUWP.vcxproj +index efe13147..23635fa5 100644 +--- a/examples/cpp/SampleCppUWP/SampleCppUWP.vcxproj ++++ b/examples/cpp/SampleCppUWP/SampleCppUWP.vcxproj +@@ -8,7 +8,7 @@ + true + Windows Store + 8.2 +- 10.0.17763.0 ++ 10.0 + 10.0.17763.0 + SampleCppUWP + +@@ -50,46 +50,46 @@ + + Application + true +- v141 ++ v142 + + + Application + true +- v141 ++ v142 + + + Application + true +- v141 ++ v142 + + + Application + true +- v141 ++ v142 + + + Application + false + true +- v141 ++ v142 + + + Application + false + true +- v141 ++ v142 + + + Application + false + true +- v141 ++ v142 + + + Application + false + true +- v141 ++ v142 + + + +diff --git a/googletest/googlemock/msvc/2015/gmock.vcxproj b/googletest/googlemock/msvc/2015/gmock.vcxproj +index 7b06da3a..612de047 100644 +--- a/googletest/googlemock/msvc/2015/gmock.vcxproj ++++ b/googletest/googlemock/msvc/2015/gmock.vcxproj +@@ -1,215 +1,215 @@ +- +- +- +- +- Debug +- ARM64 +- +- +- Debug +- Win32 +- +- +- Debug +- x64 +- +- +- Release +- ARM64 +- +- +- Release +- Win32 +- +- +- Release +- x64 +- +- +- +- {34681F0D-CE45-415D-B5F2-5C662DFE3BD5} +- gmock +- Win32Proj +- 10.0.17134.0 +- true +- +- +- +- StaticLibrary +- Unicode +- false +- v141 +- +- +- StaticLibrary +- Unicode +- false +- v141 +- +- +- StaticLibrary +- Unicode +- false +- v141 +- +- +- StaticLibrary +- Unicode +- v141 +- +- +- StaticLibrary +- Unicode +- v141 +- +- +- StaticLibrary +- Unicode +- v141 +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- <_ProjectFileVersion>10.0.30319.1 +- +- +- $(SolutionDir)$(Platform)\$(Configuration)\ +- $(Platform)\$(Configuration)\ +- +- +- $(SolutionDir)$(Platform)\$(Configuration)\ +- $(Platform)\$(Configuration)\ +- +- +- +- Disabled +- ..\..\include;..\..;%(AdditionalIncludeDirectories) +- _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) +- true +- EnableFastChecks +- MultiThreadedDebugDLL +- +- +- Level3 +- ProgramDatabase +- +- +- false +- +- +- +- +- Disabled +- ..\..\include;..\..;%(AdditionalIncludeDirectories) +- _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) +- EnableFastChecks +- MultiThreadedDebugDLL +- +- +- Level3 +- ProgramDatabase +- +- +- false +- +- +- +- +- Disabled +- ..\..\include;..\..;%(AdditionalIncludeDirectories) +- _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) +- EnableFastChecks +- MultiThreadedDebugDLL +- +- +- Level3 +- ProgramDatabase +- +- +- false +- +- +- +- +- ..\..\include;..\..;%(AdditionalIncludeDirectories) +- _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) +- MultiThreadedDLL +- +- +- Level3 +- ProgramDatabase +- +- +- false +- +- +- +- +- ..\..\include;..\..;%(AdditionalIncludeDirectories) +- _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) +- MultiThreadedDLL +- +- +- Level3 +- ProgramDatabase +- +- +- false +- +- +- +- +- ..\..\include;..\..;%(AdditionalIncludeDirectories) +- _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) +- MultiThreadedDLL +- +- +- Level3 +- ProgramDatabase +- +- +- false +- +- +- +- +- +- $(GTestDir);%(AdditionalIncludeDirectories) +- $(GTestDir);%(AdditionalIncludeDirectories) +- $(GTestDir);%(AdditionalIncludeDirectories) +- $(GTestDir);%(AdditionalIncludeDirectories) +- $(GTestDir);%(AdditionalIncludeDirectories) +- $(GTestDir);%(AdditionalIncludeDirectories) +- +- +- +- +- +- ++ ++ ++ ++ ++ Debug ++ ARM64 ++ ++ ++ Debug ++ Win32 ++ ++ ++ Debug ++ x64 ++ ++ ++ Release ++ ARM64 ++ ++ ++ Release ++ Win32 ++ ++ ++ Release ++ x64 ++ ++ ++ ++ {34681F0D-CE45-415D-B5F2-5C662DFE3BD5} ++ gmock ++ Win32Proj ++ 10.0 ++ true ++ ++ ++ ++ StaticLibrary ++ Unicode ++ false ++ v142 ++ ++ ++ StaticLibrary ++ Unicode ++ false ++ v142 ++ ++ ++ StaticLibrary ++ Unicode ++ false ++ v142 ++ ++ ++ StaticLibrary ++ Unicode ++ v142 ++ ++ ++ StaticLibrary ++ Unicode ++ v142 ++ ++ ++ StaticLibrary ++ Unicode ++ v142 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ <_ProjectFileVersion>10.0.30319.1 ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ $(SolutionDir)$(Platform)\$(Configuration)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ ++ Disabled ++ ..\..\include;..\..;%(AdditionalIncludeDirectories) ++ _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ ++ ++ Level3 ++ ProgramDatabase ++ ++ ++ false ++ ++ ++ ++ ++ Disabled ++ ..\..\include;..\..;%(AdditionalIncludeDirectories) ++ _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ ++ ++ Level3 ++ ProgramDatabase ++ ++ ++ false ++ ++ ++ ++ ++ Disabled ++ ..\..\include;..\..;%(AdditionalIncludeDirectories) ++ _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ ++ ++ Level3 ++ ProgramDatabase ++ ++ ++ false ++ ++ ++ ++ ++ ..\..\include;..\..;%(AdditionalIncludeDirectories) ++ _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) ++ MultiThreadedDLL ++ ++ ++ Level3 ++ ProgramDatabase ++ ++ ++ false ++ ++ ++ ++ ++ ..\..\include;..\..;%(AdditionalIncludeDirectories) ++ _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) ++ MultiThreadedDLL ++ ++ ++ Level3 ++ ProgramDatabase ++ ++ ++ false ++ ++ ++ ++ ++ ..\..\include;..\..;%(AdditionalIncludeDirectories) ++ _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) ++ MultiThreadedDLL ++ ++ ++ Level3 ++ ProgramDatabase ++ ++ ++ false ++ ++ ++ ++ ++ ++ $(GTestDir);%(AdditionalIncludeDirectories) ++ $(GTestDir);%(AdditionalIncludeDirectories) ++ $(GTestDir);%(AdditionalIncludeDirectories) ++ $(GTestDir);%(AdditionalIncludeDirectories) ++ $(GTestDir);%(AdditionalIncludeDirectories) ++ $(GTestDir);%(AdditionalIncludeDirectories) ++ ++ ++ ++ ++ ++ + +\ No newline at end of file +diff --git a/googletest/googletest/msvc/gtest.vcxproj b/googletest/googletest/msvc/gtest.vcxproj +index 6495fbdc..9548a5d5 100644 +--- a/googletest/googletest/msvc/gtest.vcxproj ++++ b/googletest/googletest/msvc/gtest.vcxproj +@@ -1,218 +1,218 @@ +- +- +- +- +- Debug +- ARM64 +- +- +- Debug +- Win32 +- +- +- Debug +- x64 +- +- +- Release +- ARM64 +- +- +- Release +- Win32 +- +- +- Release +- x64 +- +- +- +- {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7} +- Win32Proj +- 10.0.17134.0 +- true +- +- +- +- StaticLibrary +- v141 +- Unicode +- +- +- StaticLibrary +- v141 +- Unicode +- +- +- StaticLibrary +- v141 +- Unicode +- +- +- StaticLibrary +- v141 +- Unicode +- +- +- StaticLibrary +- v141 +- Unicode +- +- +- StaticLibrary +- v141 +- Unicode +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- <_ProjectFileVersion>14.0.25431.1 +- +- +- MinimumRecommendedRules.ruleset +- +- +- +- +- MinimumRecommendedRules.ruleset +- +- +- +- +- MinimumRecommendedRules.ruleset +- +- +- +- +- MinimumRecommendedRules.ruleset +- +- +- +- +- MinimumRecommendedRules.ruleset +- +- +- +- +- MinimumRecommendedRules.ruleset +- +- +- +- +- +- Disabled +- _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) +- true +- EnableFastChecks +- MultiThreadedDebugDLL +- +- Level3 +- EditAndContinue +- +- +- $(OutDir)gtestd.lib +- +- +- +- +- Disabled +- _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) +- EnableFastChecks +- MultiThreadedDebugDLL +- +- +- Level3 +- ProgramDatabase +- +- +- $(OutDir)gtestd.lib +- +- +- +- +- Disabled +- _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) +- EnableFastChecks +- MultiThreadedDebugDLL +- +- +- Level3 +- ProgramDatabase +- +- +- $(OutDir)gtestd.lib +- +- +- +- +- _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) +- MultiThreadedDLL +- +- Level3 +- ProgramDatabase +- +- +- $(OutDir)gtest.lib +- +- +- +- +- _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) +- MultiThreadedDLL +- +- +- Level3 +- ProgramDatabase +- +- +- $(OutDir)gtest.lib +- +- +- +- +- _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) +- MultiThreadedDLL +- +- +- Level3 +- ProgramDatabase +- +- +- $(OutDir)gtest.lib +- +- +- +- +- ..;..\include;%(AdditionalIncludeDirectories) +- ..;..\include;%(AdditionalIncludeDirectories) +- ..;..\include;%(AdditionalIncludeDirectories) +- ..;..\include;%(AdditionalIncludeDirectories) +- ..;..\include;%(AdditionalIncludeDirectories) +- ..;..\include;%(AdditionalIncludeDirectories) +- +- +- +- +- +- ++ ++ ++ ++ ++ Debug ++ ARM64 ++ ++ ++ Debug ++ Win32 ++ ++ ++ Debug ++ x64 ++ ++ ++ Release ++ ARM64 ++ ++ ++ Release ++ Win32 ++ ++ ++ Release ++ x64 ++ ++ ++ ++ {C8F6C172-56F2-4E76-B5FA-C3B423B31BE7} ++ Win32Proj ++ 10.0 ++ true ++ ++ ++ ++ StaticLibrary ++ v142 ++ Unicode ++ ++ ++ StaticLibrary ++ v142 ++ Unicode ++ ++ ++ StaticLibrary ++ v142 ++ Unicode ++ ++ ++ StaticLibrary ++ v142 ++ Unicode ++ ++ ++ StaticLibrary ++ v142 ++ Unicode ++ ++ ++ StaticLibrary ++ v142 ++ Unicode ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ <_ProjectFileVersion>14.0.25431.1 ++ ++ ++ MinimumRecommendedRules.ruleset ++ ++ ++ ++ ++ MinimumRecommendedRules.ruleset ++ ++ ++ ++ ++ MinimumRecommendedRules.ruleset ++ ++ ++ ++ ++ MinimumRecommendedRules.ruleset ++ ++ ++ ++ ++ MinimumRecommendedRules.ruleset ++ ++ ++ ++ ++ MinimumRecommendedRules.ruleset ++ ++ ++ ++ ++ ++ Disabled ++ _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) ++ true ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ ++ Level3 ++ EditAndContinue ++ ++ ++ $(OutDir)gtestd.lib ++ ++ ++ ++ ++ Disabled ++ _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ ++ ++ Level3 ++ ProgramDatabase ++ ++ ++ $(OutDir)gtestd.lib ++ ++ ++ ++ ++ Disabled ++ _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;_DEBUG;_LIB;%(PreprocessorDefinitions) ++ EnableFastChecks ++ MultiThreadedDebugDLL ++ ++ ++ Level3 ++ ProgramDatabase ++ ++ ++ $(OutDir)gtestd.lib ++ ++ ++ ++ ++ _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) ++ MultiThreadedDLL ++ ++ Level3 ++ ProgramDatabase ++ ++ ++ $(OutDir)gtest.lib ++ ++ ++ ++ ++ _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) ++ MultiThreadedDLL ++ ++ ++ Level3 ++ ProgramDatabase ++ ++ ++ $(OutDir)gtest.lib ++ ++ ++ ++ ++ _SILENCE_TR1_NAMESPACE_DEPRECATION_WARNING;WIN32;NDEBUG;_LIB;%(PreprocessorDefinitions) ++ MultiThreadedDLL ++ ++ ++ Level3 ++ ProgramDatabase ++ ++ ++ $(OutDir)gtest.lib ++ ++ ++ ++ ++ ..;..\include;%(AdditionalIncludeDirectories) ++ ..;..\include;%(AdditionalIncludeDirectories) ++ ..;..\include;%(AdditionalIncludeDirectories) ++ ..;..\include;%(AdditionalIncludeDirectories) ++ ..;..\include;%(AdditionalIncludeDirectories) ++ ..;..\include;%(AdditionalIncludeDirectories) ++ ++ ++ ++ ++ ++ + +\ No newline at end of file +diff --git a/sqliteUWP/sqlite-uwp.vcxproj b/sqliteUWP/sqlite-uwp.vcxproj +index 69c042ea..dea6ffff 100644 +--- a/sqliteUWP/sqlite-uwp.vcxproj ++++ b/sqliteUWP/sqlite-uwp.vcxproj +@@ -1,316 +1,316 @@ +- +- +- +- +- Debug +- ARM +- +- +- Debug +- ARM64 +- +- +- Debug +- Win32 +- +- +- Debug +- x64 +- +- +- Release +- ARM +- +- +- Release +- ARM64 +- +- +- Release +- Win32 +- +- +- Release +- x64 +- +- +- +- {6883a688-89f5-424a-9bfa-50d42f691b29} +- en-US +- 14.0 +- 10.0.17134.0 +- 10.0.10240.0 +- +- +- +- StaticLibrary +- true +- v141 +- true +- +- +- StaticLibrary +- true +- v141 +- true +- +- +- StaticLibrary +- true +- v141 +- true +- +- +- StaticLibrary +- true +- v141 +- true +- +- +- StaticLibrary +- false +- true +- v141 +- +- +- StaticLibrary +- false +- true +- v141 +- +- +- StaticLibrary +- false +- true +- v141 +- +- +- StaticLibrary +- false +- true +- v141 +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- false +- $(SolutionDir)$(Platform)\$(Configuration)\$(MSBuildProjectName)\ +- $(Platform)\$(Configuration)\ +- +- +- false +- $(SolutionDir)$(Platform)\$(Configuration)\$(MSBuildProjectName)\ +- $(Platform)\$(Configuration)\ +- +- +- false +- +- +- false +- +- +- false +- +- +- false +- +- +- false +- +- +- false +- +- +- +- NotUsing +- false +- true +- SQLITE_DEFAULT_AUTOVACUUM=1;SQLITE_OS_WINRT;_LIB;_UNICODE;UNICODE;%(PreprocessorDefinitions) +- +- $(OutDir)$(TargetName).pdb +- Default +- false +- +- +- Console +- false +- false +- +- +- false +- true +- +- +- +- +- NotUsing +- false +- true +- SQLITE_DEFAULT_AUTOVACUUM=1;SQLITE_OS_WINRT;_LIB;_UNICODE;UNICODE;%(PreprocessorDefinitions) +- +- MinSpace +- $(OutDir)$(TargetName).pdb +- false +- +- +- Console +- false +- false +- +- +- true +- false +- +- +- +- +- NotUsing +- false +- true +- SQLITE_DEFAULT_AUTOVACUUM=1;SQLITE_OS_WINRT;_LIB;_ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE=1;%(ClCompile.PreprocessorDefinitions) +- +- $(OutDir)$(TargetName).pdb +- Default +- false +- +- +- Console +- false +- false +- +- +- false +- true +- +- +- +- +- NotUsing +- false +- true +- SQLITE_DEFAULT_AUTOVACUUM=1;SQLITE_OS_WINRT;_LIB;_ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE=1;%(ClCompile.PreprocessorDefinitions) +- +- MinSpace +- $(OutDir)$(TargetName).pdb +- false +- +- +- Console +- false +- false +- +- +- true +- false +- +- +- +- +- NotUsing +- false +- true +- SQLITE_DEFAULT_AUTOVACUUM=1;SQLITE_OS_WINRT;_LIB;_UNICODE;UNICODE;%(PreprocessorDefinitions) +- +- $(OutDir)$(TargetName).pdb +- Default +- false +- +- +- Console +- false +- false +- +- +- false +- true +- +- +- +- +- NotUsing +- false +- true +- SQLITE_DEFAULT_AUTOVACUUM=1;SQLITE_OS_WINRT;_LIB;_UNICODE;UNICODE;%(PreprocessorDefinitions) +- +- MinSpace +- $(OutDir)$(TargetName).pdb +- false +- +- +- Console +- false +- false +- +- +- true +- false +- +- +- +- +- false +- NotUsing +- _UNICODE;UNICODE;SQLITE_OS_WINRT;%(PreprocessorDefinitions) +- false +- +- +- false +- true +- +- +- +- +- false +- NotUsing +- _UNICODE;UNICODE;SQLITE_OS_WINRT;%(PreprocessorDefinitions) +- false +- +- +- true +- false +- +- +- +- +- +- +- +- +- false +- false +- +- +- +- +- +- ++ ++ ++ ++ ++ Debug ++ ARM ++ ++ ++ Debug ++ ARM64 ++ ++ ++ Debug ++ Win32 ++ ++ ++ Debug ++ x64 ++ ++ ++ Release ++ ARM ++ ++ ++ Release ++ ARM64 ++ ++ ++ Release ++ Win32 ++ ++ ++ Release ++ x64 ++ ++ ++ ++ {6883a688-89f5-424a-9bfa-50d42f691b29} ++ en-US ++ 14.0 ++ 10.0 ++ 10.0.10240.0 ++ ++ ++ ++ StaticLibrary ++ true ++ v142 ++ true ++ ++ ++ StaticLibrary ++ true ++ v142 ++ true ++ ++ ++ StaticLibrary ++ true ++ v142 ++ true ++ ++ ++ StaticLibrary ++ true ++ v142 ++ true ++ ++ ++ StaticLibrary ++ false ++ true ++ v142 ++ ++ ++ StaticLibrary ++ false ++ true ++ v142 ++ ++ ++ StaticLibrary ++ false ++ true ++ v142 ++ ++ ++ StaticLibrary ++ false ++ true ++ v142 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ false ++ $(SolutionDir)$(Platform)\$(Configuration)\$(MSBuildProjectName)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ false ++ $(SolutionDir)$(Platform)\$(Configuration)\$(MSBuildProjectName)\ ++ $(Platform)\$(Configuration)\ ++ ++ ++ false ++ ++ ++ false ++ ++ ++ false ++ ++ ++ false ++ ++ ++ false ++ ++ ++ false ++ ++ ++ ++ NotUsing ++ false ++ true ++ SQLITE_DEFAULT_AUTOVACUUM=1;SQLITE_OS_WINRT;_LIB;_UNICODE;UNICODE;%(PreprocessorDefinitions) ++ ++ $(OutDir)$(TargetName).pdb ++ Default ++ false ++ ++ ++ Console ++ false ++ false ++ ++ ++ false ++ true ++ ++ ++ ++ ++ NotUsing ++ false ++ true ++ SQLITE_DEFAULT_AUTOVACUUM=1;SQLITE_OS_WINRT;_LIB;_UNICODE;UNICODE;%(PreprocessorDefinitions) ++ ++ MinSpace ++ $(OutDir)$(TargetName).pdb ++ false ++ ++ ++ Console ++ false ++ false ++ ++ ++ true ++ false ++ ++ ++ ++ ++ NotUsing ++ false ++ true ++ SQLITE_DEFAULT_AUTOVACUUM=1;SQLITE_OS_WINRT;_LIB;_ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE=1;%(ClCompile.PreprocessorDefinitions) ++ ++ $(OutDir)$(TargetName).pdb ++ Default ++ false ++ ++ ++ Console ++ false ++ false ++ ++ ++ false ++ true ++ ++ ++ ++ ++ NotUsing ++ false ++ true ++ SQLITE_DEFAULT_AUTOVACUUM=1;SQLITE_OS_WINRT;_LIB;_ARM_WINAPI_PARTITION_DESKTOP_SDK_AVAILABLE=1;%(ClCompile.PreprocessorDefinitions) ++ ++ MinSpace ++ $(OutDir)$(TargetName).pdb ++ false ++ ++ ++ Console ++ false ++ false ++ ++ ++ true ++ false ++ ++ ++ ++ ++ NotUsing ++ false ++ true ++ SQLITE_DEFAULT_AUTOVACUUM=1;SQLITE_OS_WINRT;_LIB;_UNICODE;UNICODE;%(PreprocessorDefinitions) ++ ++ $(OutDir)$(TargetName).pdb ++ Default ++ false ++ ++ ++ Console ++ false ++ false ++ ++ ++ false ++ true ++ ++ ++ ++ ++ NotUsing ++ false ++ true ++ SQLITE_DEFAULT_AUTOVACUUM=1;SQLITE_OS_WINRT;_LIB;_UNICODE;UNICODE;%(PreprocessorDefinitions) ++ ++ MinSpace ++ $(OutDir)$(TargetName).pdb ++ false ++ ++ ++ Console ++ false ++ false ++ ++ ++ true ++ false ++ ++ ++ ++ ++ false ++ NotUsing ++ _UNICODE;UNICODE;SQLITE_OS_WINRT;%(PreprocessorDefinitions) ++ false ++ ++ ++ false ++ true ++ ++ ++ ++ ++ false ++ NotUsing ++ _UNICODE;UNICODE;SQLITE_OS_WINRT;%(PreprocessorDefinitions) ++ false ++ ++ ++ true ++ false ++ ++ ++ ++ ++ ++ ++ ++ ++ false ++ false ++ ++ ++ ++ ++ ++ + +\ No newline at end of file +diff --git a/tests/functests/FuncTests.vcxproj b/tests/functests/FuncTests.vcxproj +index 08e24b00..868a148a 100644 +--- a/tests/functests/FuncTests.vcxproj ++++ b/tests/functests/FuncTests.vcxproj +@@ -45,7 +45,7 @@ + + + {FE79FB3A-B3EF-38DF-B7A4-11277DB72B39} +- 10.0.17134.0 ++ 10.0 + Win32Proj + Win32 + FuncTests +@@ -56,37 +56,37 @@ + Application + false + Unicode +- v141 ++ v142 + + + Application + false + Unicode +- v141 ++ v142 + + + Application + false + Unicode +- v141 ++ v142 + + + Application + false + Unicode +- v141 ++ v142 + + + Application + false + Unicode +- v141 ++ v142 + + + Application + false + Unicode +- v141 ++ v142 + + + +@@ -449,15 +449,15 @@ + + + +- ++ + + + + + +- ++ + + + + +- ++ +\ No newline at end of file +diff --git a/tests/functests/FuncTests.vcxproj.filters b/tests/functests/FuncTests.vcxproj.filters +index 71dbe545..eedf3eab 100644 +--- a/tests/functests/FuncTests.vcxproj.filters ++++ b/tests/functests/FuncTests.vcxproj.filters +@@ -14,13 +14,8 @@ + + + +- +- +- +- + + +- + + + +diff --git a/tests/unittests/UnitTests.vcxproj b/tests/unittests/UnitTests.vcxproj +index 31506e77..0bff4a9f 100644 +--- a/tests/unittests/UnitTests.vcxproj ++++ b/tests/unittests/UnitTests.vcxproj +@@ -45,7 +45,7 @@ + + + {434C594F-CDE0-3690-AC0A-9ED854B74092} +- 10.0.17134.0 ++ 10.0 + Win32Proj + Win32 + UnitTests +@@ -56,37 +56,37 @@ + Application + false + Unicode +- v141 ++ v142 + + + Application + false + Unicode +- v141 ++ v142 + + + Application + false + Unicode +- v141 ++ v142 + + + Application + false + Unicode +- v141 ++ v142 + + + Application + false + Unicode +- v141 ++ v142 + + + Application + false + Unicode +- v141 ++ v142 + + + +diff --git a/tests/unittests/UnitTests.vcxproj.filters b/tests/unittests/UnitTests.vcxproj.filters +index a6c9b1e0..be1ba644 100644 +--- a/tests/unittests/UnitTests.vcxproj.filters ++++ b/tests/unittests/UnitTests.vcxproj.filters +@@ -7,7 +7,6 @@ + + + +- + + + +@@ -53,11 +52,6 @@ + + + +- +- +- +- +- + + + +diff --git a/zlib/contrib/vstudio/vc14/zlibvc.vcxproj b/zlib/contrib/vstudio/vc14/zlibvc.vcxproj +index 5ff55579..77518e48 100644 +--- a/zlib/contrib/vstudio/vc14/zlibvc.vcxproj ++++ b/zlib/contrib/vstudio/vc14/zlibvc.vcxproj +@@ -1,1218 +1,1218 @@ +- +- +- +- +- Debug.vs2015.MT-sqlite +- ARM +- +- +- Debug.vs2015.MT-sqlite +- ARM64 +- +- +- Debug.vs2015.MT-sqlite +- Win32 +- +- +- Debug.vs2015.MT-sqlite +- x64 +- +- +- Debug +- ARM +- +- +- Debug +- ARM64 +- +- +- Debug +- Win32 +- +- +- Debug +- x64 +- +- +- Release.vs2015.MT-sqlite +- ARM +- +- +- Release.vs2015.MT-sqlite +- ARM64 +- +- +- Release.vs2015.MT-sqlite +- Win32 +- +- +- Release.vs2015.MT-sqlite +- x64 +- +- +- Release +- ARM +- +- +- Release +- ARM64 +- +- +- Release +- Win32 +- +- +- Release +- x64 +- +- +- +- {8FD826F8-3739-44E6-8CC8-997122E53B8D} +- zlib +- 10.0.17134.0 +- true +- +- +- +- StaticLibrary +- false +- false +- Unicode +- v141 +- +- +- StaticLibrary +- false +- false +- Unicode +- v141 +- +- +- true +- StaticLibrary +- false +- false +- Unicode +- v141 +- +- +- true +- StaticLibrary +- false +- false +- Unicode +- v141 +- +- +- true +- StaticLibrary +- false +- false +- Unicode +- v141 +- +- +- true +- StaticLibrary +- false +- false +- Unicode +- v141 +- +- +- StaticLibrary +- false +- Unicode +- v141 +- +- +- StaticLibrary +- false +- Unicode +- v141 +- +- +- true +- StaticLibrary +- false +- Unicode +- v141 +- +- +- true +- StaticLibrary +- false +- Unicode +- v141 +- +- +- true +- StaticLibrary +- false +- Unicode +- v141 +- +- +- true +- StaticLibrary +- false +- Unicode +- v141 +- +- +- StaticLibrary +- false +- false +- Unicode +- v141 +- +- +- StaticLibrary +- false +- false +- Unicode +- v141 +- +- +- StaticLibrary +- false +- Unicode +- v141 +- +- +- StaticLibrary +- false +- Unicode +- v141 +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- $(VC_IncludePath);$(WindowsSDK_IncludePath) +- +- +- $(VC_IncludePath);$(WindowsSDK_IncludePath) +- +- +- $(VC_IncludePath);$(WindowsSDK_IncludePath);%(AdditionalIncludeDirectories) +- +- +- $(VC_IncludePath);$(WindowsSDK_IncludePath);%(AdditionalIncludeDirectories) +- +- +- $(VC_IncludePath);$(WindowsSDK_IncludePath);%(AdditionalIncludeDirectories) +- +- +- $(VC_IncludePath);$(WindowsSDK_IncludePath);%(AdditionalIncludeDirectories) +- +- +- +- +- +- +- $(VC_IncludePath);$(WindowsSDK_IncludePath) +- +- +- $(VC_IncludePath);$(WindowsSDK_IncludePath) +- +- +- $(VC_IncludePath);$(WindowsSDK_IncludePath) +- +- +- $(VC_IncludePath);$(WindowsSDK_IncludePath) +- +- +- $(VC_IncludePath);$(WindowsSDK_IncludePath) +- +- +- $(VC_IncludePath);$(WindowsSDK_IncludePath) +- +- +- false +- $(VC_IncludePath);$(WindowsSDK_IncludePath) +- +- +- false +- $(VC_IncludePath);$(WindowsSDK_IncludePath) +- +- +- +- +- false +- $(VC_IncludePath);$(WindowsSDK_IncludePath) +- +- +- false +- $(VC_IncludePath);$(WindowsSDK_IncludePath) +- +- +- +- _DEBUG;%(PreprocessorDefinitions) +- true +- true +- Win32 +- $(OutDir)zlibvc.tlb +- +- +- Disabled +- ..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories) +- WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) +- +- +- MultiThreadedDebugDLL +- true +- $(IntDir)zlibvc.pch +- $(IntDir) +- $(IntDir) +- $(OutDir)$(TargetName).pdb +- false +- Level3 +- true +- ProgramDatabase +- StreamingSIMDExtensions +- Guard +- +- +- _DEBUG;%(PreprocessorDefinitions) +- 0x040c +- +- +- /MACHINE:I386 %(AdditionalOptions) +- ..\..\masmx86\match686.obj;..\..\masmx86\inffas32.obj;%(AdditionalDependencies) +- $(OutDir)zlib.lib +- true +- .\zlibvc.def +- true +- $(OutDir)zlib.pdb +- true +- $(OutDir)zlib.lib.map +- Windows +- false +- +- +- $(OutDir)zlib.lib +- +- ++ ++ ++ ++ ++ Debug.vs2015.MT-sqlite ++ ARM ++ ++ ++ Debug.vs2015.MT-sqlite ++ ARM64 ++ ++ ++ Debug.vs2015.MT-sqlite ++ Win32 ++ ++ ++ Debug.vs2015.MT-sqlite ++ x64 ++ ++ ++ Debug ++ ARM ++ ++ ++ Debug ++ ARM64 ++ ++ ++ Debug ++ Win32 ++ ++ ++ Debug ++ x64 ++ ++ ++ Release.vs2015.MT-sqlite ++ ARM ++ ++ ++ Release.vs2015.MT-sqlite ++ ARM64 ++ ++ ++ Release.vs2015.MT-sqlite ++ Win32 ++ ++ ++ Release.vs2015.MT-sqlite ++ x64 ++ ++ ++ Release ++ ARM ++ ++ ++ Release ++ ARM64 ++ ++ ++ Release ++ Win32 ++ ++ ++ Release ++ x64 ++ ++ ++ ++ {8FD826F8-3739-44E6-8CC8-997122E53B8D} ++ zlib ++ 10.0 ++ true ++ ++ ++ ++ StaticLibrary ++ false ++ false ++ Unicode ++ v142 ++ ++ ++ StaticLibrary ++ false ++ false ++ Unicode ++ v142 ++ ++ ++ true ++ StaticLibrary ++ false ++ false ++ Unicode ++ v142 ++ ++ ++ true ++ StaticLibrary ++ false ++ false ++ Unicode ++ v142 ++ ++ ++ true ++ StaticLibrary ++ false ++ false ++ Unicode ++ v142 ++ ++ ++ true ++ StaticLibrary ++ false ++ false ++ Unicode ++ v142 ++ ++ ++ StaticLibrary ++ false ++ Unicode ++ v142 ++ ++ ++ StaticLibrary ++ false ++ Unicode ++ v142 ++ ++ ++ true ++ StaticLibrary ++ false ++ Unicode ++ v142 ++ ++ ++ true ++ StaticLibrary ++ false ++ Unicode ++ v142 ++ ++ ++ true ++ StaticLibrary ++ false ++ Unicode ++ v142 ++ ++ ++ true ++ StaticLibrary ++ false ++ Unicode ++ v142 ++ ++ ++ StaticLibrary ++ false ++ false ++ Unicode ++ v142 ++ ++ ++ StaticLibrary ++ false ++ false ++ Unicode ++ v142 ++ ++ ++ StaticLibrary ++ false ++ Unicode ++ v142 ++ ++ ++ StaticLibrary ++ false ++ Unicode ++ v142 ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ $(VC_IncludePath);$(WindowsSDK_IncludePath) ++ ++ ++ $(VC_IncludePath);$(WindowsSDK_IncludePath) ++ ++ ++ $(VC_IncludePath);$(WindowsSDK_IncludePath);%(AdditionalIncludeDirectories) ++ ++ ++ $(VC_IncludePath);$(WindowsSDK_IncludePath);%(AdditionalIncludeDirectories) ++ ++ ++ $(VC_IncludePath);$(WindowsSDK_IncludePath);%(AdditionalIncludeDirectories) ++ ++ ++ $(VC_IncludePath);$(WindowsSDK_IncludePath);%(AdditionalIncludeDirectories) ++ ++ ++ ++ ++ ++ ++ $(VC_IncludePath);$(WindowsSDK_IncludePath) ++ ++ ++ $(VC_IncludePath);$(WindowsSDK_IncludePath) ++ ++ ++ $(VC_IncludePath);$(WindowsSDK_IncludePath) ++ ++ ++ $(VC_IncludePath);$(WindowsSDK_IncludePath) ++ ++ ++ $(VC_IncludePath);$(WindowsSDK_IncludePath) ++ ++ ++ $(VC_IncludePath);$(WindowsSDK_IncludePath) ++ ++ ++ false ++ $(VC_IncludePath);$(WindowsSDK_IncludePath) ++ ++ ++ false ++ $(VC_IncludePath);$(WindowsSDK_IncludePath) ++ ++ ++ ++ ++ false ++ $(VC_IncludePath);$(WindowsSDK_IncludePath) ++ ++ ++ false ++ $(VC_IncludePath);$(WindowsSDK_IncludePath) ++ ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ true ++ true ++ Win32 ++ $(OutDir)zlibvc.tlb ++ ++ ++ Disabled ++ ..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories) ++ WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) ++ ++ ++ MultiThreadedDebugDLL ++ true ++ $(IntDir)zlibvc.pch ++ $(IntDir) ++ $(IntDir) ++ $(OutDir)$(TargetName).pdb ++ false ++ Level3 ++ true ++ ProgramDatabase ++ StreamingSIMDExtensions ++ Guard ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x040c ++ ++ ++ /MACHINE:I386 %(AdditionalOptions) ++ ..\..\masmx86\match686.obj;..\..\masmx86\inffas32.obj;%(AdditionalDependencies) ++ $(OutDir)zlib.lib ++ true ++ .\zlibvc.def ++ true ++ $(OutDir)zlib.pdb ++ true ++ $(OutDir)zlib.lib.map ++ Windows ++ false ++ ++ ++ $(OutDir)zlib.lib ++ ++ + cd ..\..\masmx86 +-bld_ml32.bat +- +- +- MachineX86 +- false +- +- +- +- +- _DEBUG;%(PreprocessorDefinitions) +- true +- true +- Win32 +- $(OutDir)zlibvc.tlb +- +- +- Disabled +- ..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories) +- WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) +- +- +- MultiThreadedDebug +- true +- $(IntDir)zlibvc.pch +- $(IntDir) +- $(IntDir) +- $(OutDir)$(TargetName).pdb +- false +- Level3 +- true +- ProgramDatabase +- StreamingSIMDExtensions +- Guard +- +- +- _DEBUG;%(PreprocessorDefinitions) +- 0x040c +- +- +- /MACHINE:I386 %(AdditionalOptions) +- ..\..\masmx86\match686.obj;..\..\masmx86\inffas32.obj;%(AdditionalDependencies) +- $(OutDir)zlib.lib +- true +- .\zlibvc.def +- true +- $(OutDir)zlib.pdb +- true +- $(OutDir)zlib.lib.map +- Windows +- false +- +- +- $(OutDir)zlib.lib +- +- ++bld_ml32.bat ++ ++ ++ MachineX86 ++ false ++ ++ ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ true ++ true ++ Win32 ++ $(OutDir)zlibvc.tlb ++ ++ ++ Disabled ++ ..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories) ++ WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) ++ ++ ++ MultiThreadedDebug ++ true ++ $(IntDir)zlibvc.pch ++ $(IntDir) ++ $(IntDir) ++ $(OutDir)$(TargetName).pdb ++ false ++ Level3 ++ true ++ ProgramDatabase ++ StreamingSIMDExtensions ++ Guard ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x040c ++ ++ ++ /MACHINE:I386 %(AdditionalOptions) ++ ..\..\masmx86\match686.obj;..\..\masmx86\inffas32.obj;%(AdditionalDependencies) ++ $(OutDir)zlib.lib ++ true ++ .\zlibvc.def ++ true ++ $(OutDir)zlib.pdb ++ true ++ $(OutDir)zlib.lib.map ++ Windows ++ false ++ ++ ++ $(OutDir)zlib.lib ++ ++ + cd ..\..\masmx86 +-bld_ml32.bat +- +- +- MachineX86 +- false +- +- +- +- +- _DEBUG;%(PreprocessorDefinitions) +- true +- true +- $(OutDir)zlibvc.tlb +- +- +- Disabled +- %(AdditionalIncludeDirectories);$(ProjectDir)\..\..\..\ +- ARCH_ARM;WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) +- +- +- MultiThreadedDebugDLL +- true +- $(IntDir)zlibvc.pch +- $(IntDir) +- $(IntDir) +- $(OutDir)$(TargetName).pdb +- false +- Level3 +- true +- ProgramDatabase +- Guard +- +- +- _DEBUG;%(PreprocessorDefinitions) +- 0x040c +- +- +- /MACHINE:ARM %(AdditionalOptions) +- %(AdditionalDependencies) +- $(OutDir)zlib.lib +- true +- .\zlibvc.def +- true +- $(OutDir)zlib.pdb +- true +- $(OutDir)zlib.lib.map +- Windows +- false +- +- +- $(OutDir)zlib.lib +- +- +- +- +- MachineARM +- false +- +- +- +- +- _DEBUG;%(PreprocessorDefinitions) +- true +- true +- $(OutDir)zlibvc.tlb +- +- +- Disabled +- %(AdditionalIncludeDirectories);$(ProjectDir)\..\..\..\ +- ARCH_ARM;WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) +- +- +- MultiThreadedDebugDLL +- true +- $(IntDir)zlibvc.pch +- $(IntDir) +- $(IntDir) +- $(OutDir)$(TargetName).pdb +- false +- Level3 +- true +- ProgramDatabase +- Guard +- +- +- _DEBUG;%(PreprocessorDefinitions) +- 0x040c +- +- +- /MACHINE:ARM64 %(AdditionalOptions) +- %(AdditionalDependencies) +- $(OutDir)zlib.lib +- true +- .\zlibvc.def +- true +- $(OutDir)zlib.pdb +- true +- $(OutDir)zlib.lib.map +- Windows +- false +- +- +- $(OutDir)zlib.lib +- +- +- +- MachineARM64 +- false +- +- +- +- +- _DEBUG;%(PreprocessorDefinitions) +- true +- true +- $(OutDir)zlibvc.tlb +- +- +- Disabled +- %(AdditionalIncludeDirectories);$(ProjectDir)\..\..\..\ +- ARCH_ARM;WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) +- +- +- MultiThreadedDebug +- true +- $(IntDir)zlibvc.pch +- $(IntDir) +- $(IntDir) +- $(OutDir)$(TargetName).pdb +- false +- Level3 +- true +- ProgramDatabase +- Guard +- +- +- _DEBUG;%(PreprocessorDefinitions) +- 0x040c +- +- +- /MACHINE:ARM %(AdditionalOptions) +- %(AdditionalDependencies) +- $(OutDir)zlib.lib +- true +- .\zlibvc.def +- true +- $(OutDir)zlib.pdb +- true +- $(OutDir)zlib.lib.map +- Windows +- false +- +- +- $(OutDir)zlib.lib +- +- +- +- +- MachineARM +- false +- +- +- +- +- _DEBUG;%(PreprocessorDefinitions) +- true +- true +- $(OutDir)zlibvc.tlb +- +- +- Disabled +- %(AdditionalIncludeDirectories);$(ProjectDir)\..\..\..\ +- ARCH_ARM;WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) +- +- +- MultiThreadedDebug +- true +- $(IntDir)zlibvc.pch +- $(IntDir) +- $(IntDir) +- $(OutDir)$(TargetName).pdb +- false +- Level3 +- true +- ProgramDatabase +- Guard +- +- +- _DEBUG;%(PreprocessorDefinitions) +- 0x040c +- +- +- /MACHINE:ARM64 %(AdditionalOptions) +- %(AdditionalDependencies) +- $(OutDir)zlib.lib +- true +- .\zlibvc.def +- true +- $(OutDir)zlib.pdb +- true +- $(OutDir)zlib.lib.map +- Windows +- false +- +- +- $(OutDir)zlib.lib +- +- +- +- MachineARM64 +- false +- +- +- +- +- NDEBUG;%(PreprocessorDefinitions) +- true +- true +- Win32 +- $(OutDir)zlibvc.tlb +- +- +- OnlyExplicitInline +- ..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories) +- WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) +- true +- +- +- MultiThreadedDLL +- true +- true +- $(IntDir)zlibvc.pch +- All +- $(IntDir) +- $(IntDir) +- $(OutDir)$(TargetName).pdb +- false +- Level3 +- true +- true +- Speed +- true +- StreamingSIMDExtensions +- false +- Guard +- +- +- NDEBUG;%(PreprocessorDefinitions) +- 0x040c +- +- +- /MACHINE:I386 %(AdditionalOptions) +- ..\..\masmx86\match686.obj;..\..\masmx86\inffas32.obj;%(AdditionalDependencies) +- $(OutDir)zlib.lib +- true +- false +- .\zlibvc.def +- $(OutDir)zlib.pdb +- true +- $(OutDir)zlib.lib.map +- Windows +- false +- +- +- $(OutDir)zlib.lib +- +- ++bld_ml32.bat ++ ++ ++ MachineX86 ++ false ++ ++ ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ true ++ true ++ $(OutDir)zlibvc.tlb ++ ++ ++ Disabled ++ %(AdditionalIncludeDirectories);$(ProjectDir)\..\..\..\ ++ ARCH_ARM;WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) ++ ++ ++ MultiThreadedDebugDLL ++ true ++ $(IntDir)zlibvc.pch ++ $(IntDir) ++ $(IntDir) ++ $(OutDir)$(TargetName).pdb ++ false ++ Level3 ++ true ++ ProgramDatabase ++ Guard ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x040c ++ ++ ++ /MACHINE:ARM %(AdditionalOptions) ++ %(AdditionalDependencies) ++ $(OutDir)zlib.lib ++ true ++ .\zlibvc.def ++ true ++ $(OutDir)zlib.pdb ++ true ++ $(OutDir)zlib.lib.map ++ Windows ++ false ++ ++ ++ $(OutDir)zlib.lib ++ ++ ++ ++ ++ MachineARM ++ false ++ ++ ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ true ++ true ++ $(OutDir)zlibvc.tlb ++ ++ ++ Disabled ++ %(AdditionalIncludeDirectories);$(ProjectDir)\..\..\..\ ++ ARCH_ARM;WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) ++ ++ ++ MultiThreadedDebugDLL ++ true ++ $(IntDir)zlibvc.pch ++ $(IntDir) ++ $(IntDir) ++ $(OutDir)$(TargetName).pdb ++ false ++ Level3 ++ true ++ ProgramDatabase ++ Guard ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x040c ++ ++ ++ /MACHINE:ARM64 %(AdditionalOptions) ++ %(AdditionalDependencies) ++ $(OutDir)zlib.lib ++ true ++ .\zlibvc.def ++ true ++ $(OutDir)zlib.pdb ++ true ++ $(OutDir)zlib.lib.map ++ Windows ++ false ++ ++ ++ $(OutDir)zlib.lib ++ ++ ++ ++ MachineARM64 ++ false ++ ++ ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ true ++ true ++ $(OutDir)zlibvc.tlb ++ ++ ++ Disabled ++ %(AdditionalIncludeDirectories);$(ProjectDir)\..\..\..\ ++ ARCH_ARM;WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) ++ ++ ++ MultiThreadedDebug ++ true ++ $(IntDir)zlibvc.pch ++ $(IntDir) ++ $(IntDir) ++ $(OutDir)$(TargetName).pdb ++ false ++ Level3 ++ true ++ ProgramDatabase ++ Guard ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x040c ++ ++ ++ /MACHINE:ARM %(AdditionalOptions) ++ %(AdditionalDependencies) ++ $(OutDir)zlib.lib ++ true ++ .\zlibvc.def ++ true ++ $(OutDir)zlib.pdb ++ true ++ $(OutDir)zlib.lib.map ++ Windows ++ false ++ ++ ++ $(OutDir)zlib.lib ++ ++ ++ ++ ++ MachineARM ++ false ++ ++ ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ true ++ true ++ $(OutDir)zlibvc.tlb ++ ++ ++ Disabled ++ %(AdditionalIncludeDirectories);$(ProjectDir)\..\..\..\ ++ ARCH_ARM;WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) ++ ++ ++ MultiThreadedDebug ++ true ++ $(IntDir)zlibvc.pch ++ $(IntDir) ++ $(IntDir) ++ $(OutDir)$(TargetName).pdb ++ false ++ Level3 ++ true ++ ProgramDatabase ++ Guard ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x040c ++ ++ ++ /MACHINE:ARM64 %(AdditionalOptions) ++ %(AdditionalDependencies) ++ $(OutDir)zlib.lib ++ true ++ .\zlibvc.def ++ true ++ $(OutDir)zlib.pdb ++ true ++ $(OutDir)zlib.lib.map ++ Windows ++ false ++ ++ ++ $(OutDir)zlib.lib ++ ++ ++ ++ MachineARM64 ++ false ++ ++ ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ true ++ true ++ Win32 ++ $(OutDir)zlibvc.tlb ++ ++ ++ OnlyExplicitInline ++ ..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories) ++ WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) ++ true ++ ++ ++ MultiThreadedDLL ++ true ++ true ++ $(IntDir)zlibvc.pch ++ All ++ $(IntDir) ++ $(IntDir) ++ $(OutDir)$(TargetName).pdb ++ false ++ Level3 ++ true ++ true ++ Speed ++ true ++ StreamingSIMDExtensions ++ false ++ Guard ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x040c ++ ++ ++ /MACHINE:I386 %(AdditionalOptions) ++ ..\..\masmx86\match686.obj;..\..\masmx86\inffas32.obj;%(AdditionalDependencies) ++ $(OutDir)zlib.lib ++ true ++ false ++ .\zlibvc.def ++ $(OutDir)zlib.pdb ++ true ++ $(OutDir)zlib.lib.map ++ Windows ++ false ++ ++ ++ $(OutDir)zlib.lib ++ ++ + cd ..\..\masmx86 +-bld_ml32.bat +- +- +- MachineX86 +- false +- +- +- +- +- NDEBUG;%(PreprocessorDefinitions) +- true +- true +- Win32 +- $(OutDir)zlibvc.tlb +- +- +- OnlyExplicitInline +- ..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories) +- WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) +- true +- +- +- MultiThreaded +- true +- true +- $(IntDir)zlibvc.pch +- All +- $(IntDir) +- $(IntDir) +- $(OutDir)$(TargetName).pdb +- false +- Level3 +- true +- StreamingSIMDExtensions +- false +- Guard +- +- +- NDEBUG;%(PreprocessorDefinitions) +- 0x040c +- +- +- /MACHINE:I386 %(AdditionalOptions) +- ..\..\masmx86\match686.obj;..\..\masmx86\inffas32.obj;%(AdditionalDependencies) +- $(OutDir)zlib.lib +- true +- false +- .\zlibvc.def +- $(OutDir)zlib.pdb +- true +- $(OutDir)zlib.lib.map +- Windows +- false +- +- +- $(OutDir)zlib.lib +- +- ++bld_ml32.bat ++ ++ ++ MachineX86 ++ false ++ ++ ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ true ++ true ++ Win32 ++ $(OutDir)zlibvc.tlb ++ ++ ++ OnlyExplicitInline ++ ..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories) ++ WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) ++ true ++ ++ ++ MultiThreaded ++ true ++ true ++ $(IntDir)zlibvc.pch ++ All ++ $(IntDir) ++ $(IntDir) ++ $(OutDir)$(TargetName).pdb ++ false ++ Level3 ++ true ++ StreamingSIMDExtensions ++ false ++ Guard ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x040c ++ ++ ++ /MACHINE:I386 %(AdditionalOptions) ++ ..\..\masmx86\match686.obj;..\..\masmx86\inffas32.obj;%(AdditionalDependencies) ++ $(OutDir)zlib.lib ++ true ++ false ++ .\zlibvc.def ++ $(OutDir)zlib.pdb ++ true ++ $(OutDir)zlib.lib.map ++ Windows ++ false ++ ++ ++ $(OutDir)zlib.lib ++ ++ + cd ..\..\masmx86 +-bld_ml32.bat +- +- +- MachineX86 +- false +- +- +- +- +- NDEBUG;%(PreprocessorDefinitions) +- true +- true +- $(OutDir)zlibvc.tlb +- +- +- OnlyExplicitInline +- %(AdditionalIncludeDirectories);$(ProjectDir)\..\..\..\ +- ARCH_ARM;WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) +- true +- +- +- MultiThreadedDLL +- true +- true +- $(IntDir)zlibvc.pch +- All +- $(IntDir) +- $(IntDir) +- $(OutDir)$(TargetName).pdb +- false +- Level3 +- true +- true +- Speed +- true +- NotSet +- false +- Guard +- +- +- NDEBUG;%(PreprocessorDefinitions) +- 0x040c +- +- +- /MACHINE:ARM %(AdditionalOptions) +- %(AdditionalDependencies) +- $(OutDir)zlib.lib +- true +- false +- .\zlibvc.def +- $(OutDir)zlib.pdb +- true +- $(OutDir)zlib.lib.map +- Windows +- false +- +- +- $(OutDir)zlib.lib +- +- +- +- +- MachineARM +- false +- +- +- +- +- NDEBUG;%(PreprocessorDefinitions) +- true +- true +- $(OutDir)zlibvc.tlb +- +- +- OnlyExplicitInline +- %(AdditionalIncludeDirectories);$(ProjectDir)\..\..\..\ +- ARCH_ARM;WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) +- true +- +- +- MultiThreadedDLL +- true +- true +- $(IntDir)zlibvc.pch +- All +- $(IntDir) +- $(IntDir) +- $(OutDir)$(TargetName).pdb +- false +- Level3 +- true +- true +- Speed +- true +- NotSet +- false +- Guard +- +- +- NDEBUG;%(PreprocessorDefinitions) +- 0x040c +- +- +- /MACHINE:ARM64 %(AdditionalOptions) +- %(AdditionalDependencies) +- $(OutDir)zlib.lib +- true +- false +- .\zlibvc.def +- $(OutDir)zlib.pdb +- true +- $(OutDir)zlib.lib.map +- Windows +- false +- +- +- $(OutDir)zlib.lib +- +- +- +- MachineARM64 +- false +- +- +- +- +- NDEBUG;%(PreprocessorDefinitions) +- true +- true +- $(OutDir)zlibvc.tlb +- +- +- OnlyExplicitInline +- %(AdditionalIncludeDirectories);$(ProjectDir)\..\..\..\ +- ARCH_ARM;WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) +- true +- +- +- MultiThreaded +- true +- true +- $(IntDir)zlibvc.pch +- All +- $(IntDir) +- $(IntDir) +- $(OutDir)$(TargetName).pdb +- false +- Level3 +- true +- false +- Guard +- +- +- NDEBUG;%(PreprocessorDefinitions) +- 0x040c +- +- +- /MACHINE:ARM %(AdditionalOptions) +- %(AdditionalDependencies) +- $(OutDir)zlib.lib +- true +- false +- .\zlibvc.def +- $(OutDir)zlib.pdb +- true +- $(OutDir)zlib.lib.map +- Windows +- false +- +- +- $(OutDir)zlib.lib +- +- +- +- +- MachineARM +- false +- +- +- +- +- NDEBUG;%(PreprocessorDefinitions) +- true +- true +- $(OutDir)zlibvc.tlb +- +- +- OnlyExplicitInline +- %(AdditionalIncludeDirectories);$(ProjectDir)\..\..\..\ +- ARCH_ARM;WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) +- true +- +- +- MultiThreaded +- true +- true +- $(IntDir)zlibvc.pch +- All +- $(IntDir) +- $(IntDir) +- $(OutDir)$(TargetName).pdb +- false +- Level3 +- true +- false +- Guard +- +- +- NDEBUG;%(PreprocessorDefinitions) +- 0x040c +- +- +- /MACHINE:ARM64 %(AdditionalOptions) +- %(AdditionalDependencies) +- $(OutDir)zlib.lib +- true +- false +- .\zlibvc.def +- $(OutDir)zlib.pdb +- true +- $(OutDir)zlib.lib.map +- Windows +- false +- +- +- $(OutDir)zlib.lib +- +- +- +- MachineARM64 +- false +- +- +- +- +- _DEBUG;%(PreprocessorDefinitions) +- true +- true +- X64 +- $(OutDir)zlibvc.tlb +- +- +- Disabled +- ..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories) +- WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions) +- +- +- MultiThreadedDebugDLL +- true +- $(IntDir)zlibvc.pch +- $(IntDir) +- $(IntDir) +- $(OutDir)$(TargetName).pdb +- false +- Level3 +- true +- ProgramDatabase +- StreamingSIMDExtensions2 +- Guard +- +- +- _DEBUG;%(PreprocessorDefinitions) +- 0x040c +- +- +- ..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies) +- $(OutDir)zlib.lib +- true +- .\zlibvc.def +- true +- $(OutDir)zlib.pdb +- true +- $(OutDir)zlib.lib.map +- Windows +- $(OutDir)zlib.lib +- MachineX64 +- +- ++bld_ml32.bat ++ ++ ++ MachineX86 ++ false ++ ++ ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ true ++ true ++ $(OutDir)zlibvc.tlb ++ ++ ++ OnlyExplicitInline ++ %(AdditionalIncludeDirectories);$(ProjectDir)\..\..\..\ ++ ARCH_ARM;WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) ++ true ++ ++ ++ MultiThreadedDLL ++ true ++ true ++ $(IntDir)zlibvc.pch ++ All ++ $(IntDir) ++ $(IntDir) ++ $(OutDir)$(TargetName).pdb ++ false ++ Level3 ++ true ++ true ++ Speed ++ true ++ NotSet ++ false ++ Guard ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x040c ++ ++ ++ /MACHINE:ARM %(AdditionalOptions) ++ %(AdditionalDependencies) ++ $(OutDir)zlib.lib ++ true ++ false ++ .\zlibvc.def ++ $(OutDir)zlib.pdb ++ true ++ $(OutDir)zlib.lib.map ++ Windows ++ false ++ ++ ++ $(OutDir)zlib.lib ++ ++ ++ ++ ++ MachineARM ++ false ++ ++ ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ true ++ true ++ $(OutDir)zlibvc.tlb ++ ++ ++ OnlyExplicitInline ++ %(AdditionalIncludeDirectories);$(ProjectDir)\..\..\..\ ++ ARCH_ARM;WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) ++ true ++ ++ ++ MultiThreadedDLL ++ true ++ true ++ $(IntDir)zlibvc.pch ++ All ++ $(IntDir) ++ $(IntDir) ++ $(OutDir)$(TargetName).pdb ++ false ++ Level3 ++ true ++ true ++ Speed ++ true ++ NotSet ++ false ++ Guard ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x040c ++ ++ ++ /MACHINE:ARM64 %(AdditionalOptions) ++ %(AdditionalDependencies) ++ $(OutDir)zlib.lib ++ true ++ false ++ .\zlibvc.def ++ $(OutDir)zlib.pdb ++ true ++ $(OutDir)zlib.lib.map ++ Windows ++ false ++ ++ ++ $(OutDir)zlib.lib ++ ++ ++ ++ MachineARM64 ++ false ++ ++ ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ true ++ true ++ $(OutDir)zlibvc.tlb ++ ++ ++ OnlyExplicitInline ++ %(AdditionalIncludeDirectories);$(ProjectDir)\..\..\..\ ++ ARCH_ARM;WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) ++ true ++ ++ ++ MultiThreaded ++ true ++ true ++ $(IntDir)zlibvc.pch ++ All ++ $(IntDir) ++ $(IntDir) ++ $(OutDir)$(TargetName).pdb ++ false ++ Level3 ++ true ++ false ++ Guard ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x040c ++ ++ ++ /MACHINE:ARM %(AdditionalOptions) ++ %(AdditionalDependencies) ++ $(OutDir)zlib.lib ++ true ++ false ++ .\zlibvc.def ++ $(OutDir)zlib.pdb ++ true ++ $(OutDir)zlib.lib.map ++ Windows ++ false ++ ++ ++ $(OutDir)zlib.lib ++ ++ ++ ++ ++ MachineARM ++ false ++ ++ ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ true ++ true ++ $(OutDir)zlibvc.tlb ++ ++ ++ OnlyExplicitInline ++ %(AdditionalIncludeDirectories);$(ProjectDir)\..\..\..\ ++ ARCH_ARM;WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;%(PreprocessorDefinitions) ++ true ++ ++ ++ MultiThreaded ++ true ++ true ++ $(IntDir)zlibvc.pch ++ All ++ $(IntDir) ++ $(IntDir) ++ $(OutDir)$(TargetName).pdb ++ false ++ Level3 ++ true ++ false ++ Guard ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x040c ++ ++ ++ /MACHINE:ARM64 %(AdditionalOptions) ++ %(AdditionalDependencies) ++ $(OutDir)zlib.lib ++ true ++ false ++ .\zlibvc.def ++ $(OutDir)zlib.pdb ++ true ++ $(OutDir)zlib.lib.map ++ Windows ++ false ++ ++ ++ $(OutDir)zlib.lib ++ ++ ++ ++ MachineARM64 ++ false ++ ++ ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ true ++ true ++ X64 ++ $(OutDir)zlibvc.tlb ++ ++ ++ Disabled ++ ..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories) ++ WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions) ++ ++ ++ MultiThreadedDebugDLL ++ true ++ $(IntDir)zlibvc.pch ++ $(IntDir) ++ $(IntDir) ++ $(OutDir)$(TargetName).pdb ++ false ++ Level3 ++ true ++ ProgramDatabase ++ StreamingSIMDExtensions2 ++ Guard ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x040c ++ ++ ++ ..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies) ++ $(OutDir)zlib.lib ++ true ++ .\zlibvc.def ++ true ++ $(OutDir)zlib.pdb ++ true ++ $(OutDir)zlib.lib.map ++ Windows ++ $(OutDir)zlib.lib ++ MachineX64 ++ ++ + cd ..\..\contrib\masmx64 +-bld_ml64.bat +- +- +- false +- +- +- +- +- _DEBUG;%(PreprocessorDefinitions) +- true +- true +- X64 +- $(OutDir)zlibvc.tlb +- +- +- Disabled +- ..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories) +- _CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions) +- +- +- MultiThreadedDebug +- true +- $(IntDir)zlibvc.pch +- $(IntDir) +- $(IntDir) +- $(OutDir)$(TargetName).pdb +- false +- Level3 +- true +- ProgramDatabase +- StreamingSIMDExtensions2 +- Guard +- +- +- _DEBUG;%(PreprocessorDefinitions) +- 0x040c +- +- +- ..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies) +- $(OutDir)zlib.lib +- true +- .\zlibvc.def +- true +- $(OutDir)zlib.pdb +- true +- $(OutDir)zlib.lib.map +- Windows +- $(OutDir)zlib.lib +- MachineX64 +- +- ++bld_ml64.bat ++ ++ ++ false ++ ++ ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ true ++ true ++ X64 ++ $(OutDir)zlibvc.tlb ++ ++ ++ Disabled ++ ..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories) ++ _CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions) ++ ++ ++ MultiThreadedDebug ++ true ++ $(IntDir)zlibvc.pch ++ $(IntDir) ++ $(IntDir) ++ $(OutDir)$(TargetName).pdb ++ false ++ Level3 ++ true ++ ProgramDatabase ++ StreamingSIMDExtensions2 ++ Guard ++ ++ ++ _DEBUG;%(PreprocessorDefinitions) ++ 0x040c ++ ++ ++ ..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies) ++ $(OutDir)zlib.lib ++ true ++ .\zlibvc.def ++ true ++ $(OutDir)zlib.pdb ++ true ++ $(OutDir)zlib.lib.map ++ Windows ++ $(OutDir)zlib.lib ++ MachineX64 ++ ++ + cd ..\..\contrib\masmx64 +-bld_ml64.bat +- +- +- false +- +- +- +- +- NDEBUG;%(PreprocessorDefinitions) +- true +- true +- X64 +- $(OutDir)zlibvc.tlb +- +- +- OnlyExplicitInline +- ..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories) +- WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions) +- true +- +- +- MultiThreadedDLL +- true +- true +- $(IntDir)zlibvc.pch +- All +- $(IntDir) +- $(IntDir) +- $(OutDir)$(TargetName).pdb +- false +- Level3 +- true +- true +- Speed +- true +- StreamingSIMDExtensions2 +- false +- Guard +- +- +- NDEBUG;%(PreprocessorDefinitions) +- 0x040c +- +- +- ..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies) +- $(OutDir)zlib.lib +- true +- false +- .\zlibvc.def +- $(OutDir)zlib.pdb +- true +- $(OutDir)zlib.lib.map +- Windows +- $(OutDir)zlib.lib +- MachineX64 +- +- ++bld_ml64.bat ++ ++ ++ false ++ ++ ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ true ++ true ++ X64 ++ $(OutDir)zlibvc.tlb ++ ++ ++ OnlyExplicitInline ++ ..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories) ++ WIN32;_CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions) ++ true ++ ++ ++ MultiThreadedDLL ++ true ++ true ++ $(IntDir)zlibvc.pch ++ All ++ $(IntDir) ++ $(IntDir) ++ $(OutDir)$(TargetName).pdb ++ false ++ Level3 ++ true ++ true ++ Speed ++ true ++ StreamingSIMDExtensions2 ++ false ++ Guard ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x040c ++ ++ ++ ..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies) ++ $(OutDir)zlib.lib ++ true ++ false ++ .\zlibvc.def ++ $(OutDir)zlib.pdb ++ true ++ $(OutDir)zlib.lib.map ++ Windows ++ $(OutDir)zlib.lib ++ MachineX64 ++ ++ + cd ..\..\masmx64 +-bld_ml64.bat +- +- +- false +- +- +- +- +- NDEBUG;%(PreprocessorDefinitions) +- true +- true +- X64 +- $(OutDir)zlibvc.tlb +- +- +- OnlyExplicitInline +- ..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories) +- _CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions) +- true +- +- +- MultiThreaded +- true +- true +- $(IntDir)zlibvc.pch +- All +- $(IntDir) +- $(IntDir) +- $(OutDir)$(TargetName).pdb +- false +- Level3 +- true +- StreamingSIMDExtensions2 +- false +- Guard +- +- +- NDEBUG;%(PreprocessorDefinitions) +- 0x040c +- +- +- ..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies) +- $(OutDir)zlib.lib +- true +- false +- .\zlibvc.def +- $(OutDir)zlib.pdb +- true +- $(OutDir)zlib.lib.map +- Windows +- $(OutDir)zlib.lib +- MachineX64 +- +- ++bld_ml64.bat ++ ++ ++ false ++ ++ ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ true ++ true ++ X64 ++ $(OutDir)zlibvc.tlb ++ ++ ++ OnlyExplicitInline ++ ..\..\..;..\..\masmx86;%(AdditionalIncludeDirectories) ++ _CRT_NONSTDC_NO_DEPRECATE;_CRT_SECURE_NO_DEPRECATE;_CRT_NONSTDC_NO_WARNINGS;ZLIB_WINAPI;WIN64;%(PreprocessorDefinitions) ++ true ++ ++ ++ MultiThreaded ++ true ++ true ++ $(IntDir)zlibvc.pch ++ All ++ $(IntDir) ++ $(IntDir) ++ $(OutDir)$(TargetName).pdb ++ false ++ Level3 ++ true ++ StreamingSIMDExtensions2 ++ false ++ Guard ++ ++ ++ NDEBUG;%(PreprocessorDefinitions) ++ 0x040c ++ ++ ++ ..\..\masmx64\gvmat64.obj;..\..\masmx64\inffasx64.obj;%(AdditionalDependencies) ++ $(OutDir)zlib.lib ++ true ++ false ++ .\zlibvc.def ++ $(OutDir)zlib.pdb ++ true ++ $(OutDir)zlib.lib.map ++ Windows ++ $(OutDir)zlib.lib ++ MachineX64 ++ ++ + cd ..\..\masmx64 +-bld_ml64.bat +- +- +- false +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- +- ++bld_ml64.bat ++ ++ ++ false ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ ++ + +\ No newline at end of file