blob: f3130e9ac52a6421ae6abf5584f518c3e23bcfe2 [file] [log] [blame]
Adrien Beraud087d5592023-03-06 11:22:33 -05001---
2 whisper.vcxproj | 83 +++++++++++++++++++++++++++++++++++++++++++++++++
3 1 file changed, 83 insertions(+)
4 create mode 100644 whisper.vcxproj
5
6diff --git a/whisper.vcxproj b/whisper.vcxproj
7new file mode 100644
8index 0000000..9cbfdb7
9--- /dev/null
10+++ b/whisper.vcxproj
11@@ -0,0 +1,83 @@
12+<?xml version="1.0" encoding="utf-8"?>
13+<Project DefaultTargets="Build" ToolsVersion="17.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
14+ <PropertyGroup>
15+ <PreferredToolArchitecture>x64</PreferredToolArchitecture>
16+ </PropertyGroup>
17+ <ItemGroup Label="ProjectConfigurations">
18+ <ProjectConfiguration Include="Release|x64">
19+ <Configuration>Release</Configuration>
20+ <Platform>x64</Platform>
21+ </ProjectConfiguration>
22+ </ItemGroup>
23+ <PropertyGroup Label="Globals">
24+ <ProjectGuid>{47B512DE-EE88-3A32-A01F-DF4317B53175}</ProjectGuid>
25+ <Keyword>Win32Proj</Keyword>
26+ <WindowsTargetPlatformVersion>10.0.18362.0</WindowsTargetPlatformVersion>
27+ <Platform>x64</Platform>
28+ <ProjectName>whisper</ProjectName>
29+ <VCProjectUpgraderObjectName>NoUpgrade</VCProjectUpgraderObjectName>
30+ </PropertyGroup>
31+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
32+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
33+ <ConfigurationType>StaticLibrary</ConfigurationType>
34+ <CharacterSet>MultiByte</CharacterSet>
35+ <PlatformToolset>v143</PlatformToolset>
36+ </PropertyGroup>
37+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
38+ <ImportGroup Label="ExtensionSettings">
39+ </ImportGroup>
40+ <ImportGroup Label="PropertySheets">
41+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
42+ </ImportGroup>
43+ <PropertyGroup Label="UserMacros" />
44+ <PropertyGroup>
45+ <_ProjectFileVersion>10.0.18362.0</_ProjectFileVersion>
46+ <OutDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">$(ProjectDir)..\..\msvc\lib\$(Platform)\</OutDir>
47+ <IntDir Condition="'$(Configuration)|$(Platform)'=='Release|x64'">whisper.dir\Release\</IntDir>
48+ <TargetName Condition="'$(Configuration)|$(Platform)'=='Release|x64'">whisper</TargetName>
49+ <TargetExt Condition="'$(Configuration)|$(Platform)'=='Release|x64'">.lib</TargetExt>
50+ </PropertyGroup>
51+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
52+ <ClCompile>
53+ <AdditionalIncludeDirectories>$(ProjectDir).;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
54+ <AssemblerListingLocation>$(IntDir)</AssemblerListingLocation>
55+ <EnableEnhancedInstructionSet>AdvancedVectorExtensions2</EnableEnhancedInstructionSet>
56+ <ExceptionHandling>Sync</ExceptionHandling>
57+ <InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
58+ <Optimization>MaxSpeed</Optimization>
59+ <PrecompiledHeader>NotUsing</PrecompiledHeader>
60+ <RuntimeLibrary>MultiThreaded</RuntimeLibrary>
61+ <RuntimeTypeInfo>true</RuntimeTypeInfo>
62+ <UseFullPaths>false</UseFullPaths>
63+ <WarningLevel>Level3</WarningLevel>
64+ <PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;CMAKE_INTDIR="Release"</PreprocessorDefinitions>
65+ <ObjectFileName>$(IntDir)</ObjectFileName>
66+ <DebugInformationFormat>
67+ </DebugInformationFormat>
68+ </ClCompile>
69+ <ResourceCompile>
70+ <PreprocessorDefinitions>%(PreprocessorDefinitions);WIN32;_WINDOWS;NDEBUG;_CRT_SECURE_NO_WARNINGS;CMAKE_INTDIR=\"Release\"</PreprocessorDefinitions>
71+ <AdditionalIncludeDirectories>$(ProjectDir).;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
72+ </ResourceCompile>
73+ <Midl>
74+ <AdditionalIncludeDirectories>$(ProjectDir).;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
75+ <OutputDirectory>$(ProjectDir)/$(IntDir)</OutputDirectory>
76+ <HeaderFileName>%(Filename).h</HeaderFileName>
77+ <TypeLibraryName>%(Filename).tlb</TypeLibraryName>
78+ <InterfaceIdentifierFileName>%(Filename)_i.c</InterfaceIdentifierFileName>
79+ <ProxyFileName>%(Filename)_p.c</ProxyFileName>
80+ </Midl>
81+ <Lib>
82+ <AdditionalOptions>%(AdditionalOptions) /machine:x64</AdditionalOptions>
83+ </Lib>
84+ </ItemDefinitionGroup>
85+ <ItemGroup>
86+ <ClInclude Include="ggml.h" />
87+ <ClCompile Include="ggml.c" />
88+ <ClInclude Include="whisper.h" />
89+ <ClCompile Include="whisper.cpp" />
90+ </ItemGroup>
91+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
92+ <ImportGroup Label="ExtensionTargets">
93+ </ImportGroup>
94+</Project>
95--
962.37.1.windows.1
97