aboutsummaryrefslogtreecommitdiff
path: root/sibs.vcxproj
diff options
context:
space:
mode:
Diffstat (limited to 'sibs.vcxproj')
-rw-r--r--sibs.vcxproj186
1 files changed, 186 insertions, 0 deletions
diff --git a/sibs.vcxproj b/sibs.vcxproj
new file mode 100644
index 0000000..28a2a99
--- /dev/null
+++ b/sibs.vcxproj
@@ -0,0 +1,186 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <ItemGroup Label="ProjectConfigurations">
+ <ProjectConfiguration Include="Debug|Win32">
+ <Configuration>Debug</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|Win32">
+ <Configuration>Release</Configuration>
+ <Platform>Win32</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Debug|x64">
+ <Configuration>Debug</Configuration>
+ <Platform>x64</Platform>
+ </ProjectConfiguration>
+ <ProjectConfiguration Include="Release|x64">
+ <Configuration>Release</Configuration>
+ <Platform>x64</Platform>
+ </ProjectConfiguration>
+ </ItemGroup>
+ <PropertyGroup Label="Globals">
+ <VCProjectVersion>15.0</VCProjectVersion>
+ <ProjectGuid>{2C511FA3-FDD5-426D-88B1-29D3A1402CCA}</ProjectGuid>
+ <Keyword>Win32Proj</Keyword>
+ <WindowsTargetPlatformVersion>10.0.17134.0</WindowsTargetPlatformVersion>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>true</UseDebugLibraries>
+ <PlatformToolset>v141</PlatformToolset>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ <PlatformToolset>v141</PlatformToolset>
+ <CharacterSet>Unicode</CharacterSet>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>true</UseDebugLibraries>
+ <PlatformToolset>v141</PlatformToolset>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
+ <ConfigurationType>Application</ConfigurationType>
+ <UseDebugLibraries>false</UseDebugLibraries>
+ <PlatformToolset>v141</PlatformToolset>
+ </PropertyGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
+ <ImportGroup Label="ExtensionSettings">
+ </ImportGroup>
+ <ImportGroup Label="Shared">
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
+ <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
+ </ImportGroup>
+ <PropertyGroup Label="UserMacros" />
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <LinkIncremental>true</LinkIncremental>
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <LinkIncremental>true</LinkIncremental>
+ </PropertyGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
+ <ClCompile>
+ <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
+ <WarningLevel>Level3</WarningLevel>
+ <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+ <Optimization>Disabled</Optimization>
+ </ClCompile>
+ <Link>
+ <TargetMachine>MachineX86</TargetMachine>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ <SubSystem>Console</SubSystem>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
+ <ClCompile>
+ <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
+ <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary>
+ <WarningLevel>Level3</WarningLevel>
+ <DebugInformationFormat>ProgramDatabase</DebugInformationFormat>
+ </ClCompile>
+ <Link>
+ <TargetMachine>MachineX86</TargetMachine>
+ <GenerateDebugInformation>true</GenerateDebugInformation>
+ <SubSystem>Console</SubSystem>
+ <EnableCOMDATFolding>true</EnableCOMDATFolding>
+ <OptimizeReferences>true</OptimizeReferences>
+ </Link>
+ </ItemDefinitionGroup>
+ <ItemGroup>
+ <ClCompile Include="backend\BackendUtils.cpp" />
+ <ClCompile Include="backend\ninja\Ninja.cpp" />
+ <ClCompile Include="external\xxhash.c" />
+ <ClCompile Include="src\Archive.cpp" />
+ <ClCompile Include="src\CmakeModule.cpp" />
+ <ClCompile Include="src\Conf.cpp" />
+ <ClCompile Include="src\curl.cpp" />
+ <ClCompile Include="src\Exec.cpp" />
+ <ClCompile Include="src\FileUtil.cpp" />
+ <ClCompile Include="src\GitRepository.cpp" />
+ <ClCompile Include="src\GlobalLib.cpp" />
+ <ClCompile Include="src\main.cpp" />
+ <ClCompile Include="src\Package.cpp" />
+ <ClCompile Include="src\PkgConfig.cpp" />
+ </ItemGroup>
+ <ItemGroup>
+ <ClInclude Include="backend\BackendUtils.hpp" />
+ <ClInclude Include="backend\ninja\Ninja.hpp" />
+ <ClInclude Include="external\rapidjson\allocators.h" />
+ <ClInclude Include="external\rapidjson\cursorstreamwrapper.h" />
+ <ClInclude Include="external\rapidjson\document.h" />
+ <ClInclude Include="external\rapidjson\encodedstream.h" />
+ <ClInclude Include="external\rapidjson\encodings.h" />
+ <ClInclude Include="external\rapidjson\error\en.h" />
+ <ClInclude Include="external\rapidjson\error\error.h" />
+ <ClInclude Include="external\rapidjson\filereadstream.h" />
+ <ClInclude Include="external\rapidjson\filewritestream.h" />
+ <ClInclude Include="external\rapidjson\fwd.h" />
+ <ClInclude Include="external\rapidjson\internal\biginteger.h" />
+ <ClInclude Include="external\rapidjson\internal\diyfp.h" />
+ <ClInclude Include="external\rapidjson\internal\dtoa.h" />
+ <ClInclude Include="external\rapidjson\internal\ieee754.h" />
+ <ClInclude Include="external\rapidjson\internal\itoa.h" />
+ <ClInclude Include="external\rapidjson\internal\meta.h" />
+ <ClInclude Include="external\rapidjson\internal\pow10.h" />
+ <ClInclude Include="external\rapidjson\internal\regex.h" />
+ <ClInclude Include="external\rapidjson\internal\stack.h" />
+ <ClInclude Include="external\rapidjson\internal\strfunc.h" />
+ <ClInclude Include="external\rapidjson\internal\strtod.h" />
+ <ClInclude Include="external\rapidjson\internal\swap.h" />
+ <ClInclude Include="external\rapidjson\istreamwrapper.h" />
+ <ClInclude Include="external\rapidjson\memorybuffer.h" />
+ <ClInclude Include="external\rapidjson\memorystream.h" />
+ <ClInclude Include="external\rapidjson\msinttypes\inttypes.h" />
+ <ClInclude Include="external\rapidjson\msinttypes\stdint.h" />
+ <ClInclude Include="external\rapidjson\ostreamwrapper.h" />
+ <ClInclude Include="external\rapidjson\pointer.h" />
+ <ClInclude Include="external\rapidjson\prettywriter.h" />
+ <ClInclude Include="external\rapidjson\rapidjson.h" />
+ <ClInclude Include="external\rapidjson\reader.h" />
+ <ClInclude Include="external\rapidjson\schema.h" />
+ <ClInclude Include="external\rapidjson\stream.h" />
+ <ClInclude Include="external\rapidjson\stringbuffer.h" />
+ <ClInclude Include="external\rapidjson\writer.h" />
+ <ClInclude Include="external\tinydir.h" />
+ <ClInclude Include="external\utf8.h" />
+ <ClInclude Include="external\utf8\checked.h" />
+ <ClInclude Include="external\utf8\core.h" />
+ <ClInclude Include="external\utf8\unchecked.h" />
+ <ClInclude Include="external\xxhash.h" />
+ <ClInclude Include="include\Archive.hpp" />
+ <ClInclude Include="include\CmakeModule.hpp" />
+ <ClInclude Include="include\Conf.hpp" />
+ <ClInclude Include="include\curl.hpp" />
+ <ClInclude Include="include\Dependency.hpp" />
+ <ClInclude Include="include\env.hpp" />
+ <ClInclude Include="include\Exec.hpp" />
+ <ClInclude Include="include\FileUtil.hpp" />
+ <ClInclude Include="include\GitRepository.hpp" />
+ <ClInclude Include="include\GlobalLib.hpp" />
+ <ClInclude Include="include\Linker.hpp" />
+ <ClInclude Include="include\Package.hpp" />
+ <ClInclude Include="include\PackageVersion.hpp" />
+ <ClInclude Include="include\PkgConfig.hpp" />
+ <ClInclude Include="include\Result.hpp" />
+ <ClInclude Include="include\StringView.hpp" />
+ <ClInclude Include="include\types.hpp" />
+ <ClInclude Include="include\utils.hpp" />
+ </ItemGroup>
+ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
+ <ImportGroup Label="ExtensionTargets">
+ </ImportGroup>
+</Project> \ No newline at end of file