X-Git-Url: https://git.josue.xyz/?p=VSoRC%2F.git;a=blobdiff_plain;f=node_modules%2Fnode-pty%2Fdeps%2Fwinpty%2Fsrc%2Fconfigurations.gypi;fp=node_modules%2Fnode-pty%2Fdeps%2Fwinpty%2Fsrc%2Fconfigurations.gypi;h=0000000000000000000000000000000000000000;hp=e990a60338e08eb771a183577de9d82d42584fae;hb=5e96dd57ddd883604e87f62bdddcb111c63a6e1a;hpb=acb5f682a2b75b972710cabd81658f63071324b0 diff --git a/node_modules/node-pty/deps/winpty/src/configurations.gypi b/node_modules/node-pty/deps/winpty/src/configurations.gypi deleted file mode 100644 index e990a60..0000000 --- a/node_modules/node-pty/deps/winpty/src/configurations.gypi +++ /dev/null @@ -1,60 +0,0 @@ -# By default gyp/msbuild build for 32-bit Windows. This gyp include file -# defines configurations for both 32-bit and 64-bit Windows. To use it, run: -# -# C:\...\winpty\src>gyp -I configurations.gypi -# -# This command generates Visual Studio project files with a Release -# configuration and two Platforms--Win32 and x64. Both can be built: -# -# C:\...\winpty\src>msbuild winpty.sln /p:Platform=Win32 -# C:\...\winpty\src>msbuild winpty.sln /p:Platform=x64 -# -# The output is placed in: -# -# C:\...\winpty\src\Release\Win32 -# C:\...\winpty\src\Release\x64 -# -# Windows XP note: By default, the project files will use the default "toolset" -# for the given MSVC version. For MSVC 2013 and MSVC 2015, the default toolset -# generates binaries that do not run on Windows XP. To target Windows XP, -# select the XP-specific toolset by passing -# -D WINPTY_MSBUILD_TOOLSET={v120_xp,v140_xp} to gyp (v120_xp == MSVC 2013, -# v140_xp == MSVC 2015). Unfortunately, it isn't possible to have a single -# project file with configurations for both XP and post-XP. This seems to be a -# limitation of the MSVC project file format. -# -# This file is not included by default, because I suspect it would interfere -# with node-gyp, which has a different system for building 32-vs-64-bit -# binaries. It uses a common.gypi, and the project files it generates can only -# build a single architecture, the output paths are not differentiated by -# architecture. - -{ - 'variables': { - 'WINPTY_MSBUILD_TOOLSET%': '', - }, - 'target_defaults': { - 'default_configuration': 'Release_Win32', - 'configurations': { - 'Release_Win32': { - 'msvs_configuration_platform': 'Win32', - }, - 'Release_x64': { - 'msvs_configuration_platform': 'x64', - }, - }, - 'msvs_configuration_attributes': { - 'OutputDirectory': '$(SolutionDir)$(ConfigurationName)\\$(Platform)', - 'IntermediateDirectory': '$(ConfigurationName)\\$(Platform)\\obj\\$(ProjectName)', - }, - 'msvs_settings': { - 'VCLinkerTool': { - 'SubSystem': '1', # /SUBSYSTEM:CONSOLE - }, - 'VCCLCompilerTool': { - 'RuntimeLibrary': '0', # MultiThreaded (/MT) - }, - }, - 'msbuild_toolset' : '<(WINPTY_MSBUILD_TOOLSET)', - } -}