mirror of
https://github.com/ultravideo/uvg266.git
synced 2024-11-24 02:24:07 +00:00
60a0ba4280
- I haven't found a good way of including external dependencies to VS projects yet. Win32-pthreads is assumed to be found at the same level as kvazaar dir and has the files x86/pthreadVC2.lib and x64/pthreadVC2.lib. - Win32-pthreads also requires the pthreadVC2.dll to be in PATH when running the program. Not sure what to do about that yet. We might need an installer for windows to handle that. - Disable openmp as it's no longer used. - Stop linking Ws2_32.lib as that hasn't been used for ages.
27 lines
1.3 KiB
XML
27 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<ImportGroup Label="PropertySheets" />
|
|
<PropertyGroup Label="UserMacros" />
|
|
<PropertyGroup>
|
|
<IntDir>$(Platform)-$(Configuration)\</IntDir>
|
|
<OutDir>$(SolutionDir)..\bin\$(Platform)-$(Configuration)\</OutDir>
|
|
</PropertyGroup>
|
|
<ItemDefinitionGroup>
|
|
<ClCompile>
|
|
<CompileAs>CompileAsC</CompileAs>
|
|
<WarningLevel>Level4</WarningLevel>
|
|
<AssemblerOutput>AssemblyAndSourceCode</AssemblerOutput>
|
|
<RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary>
|
|
<PreprocessorDefinitions>WIN32;WIN64;_CONSOLE;_CRT_SECURE_NO_WARNINGS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
|
<AdditionalIncludeDirectories>$(SolutionDir)..\..\pthreads\include;$(SolutionDir)..\src;$(SolutionDir)..\src\extras;$(SolutionDir)..\;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
|
<DisableSpecificWarnings>4244;4204;4206;4028</DisableSpecificWarnings>
|
|
<OpenMPSupport>false</OpenMPSupport>
|
|
</ClCompile>
|
|
<Link>
|
|
<AdditionalDependencies>%(AdditionalDependencies)</AdditionalDependencies>
|
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
|
<SubSystem>Console</SubSystem>
|
|
</Link>
|
|
</ItemDefinitionGroup>
|
|
<ItemGroup />
|
|
</Project> |