/
githubmirror
/
libmicrohttpd
Обзор
Документация
Войти
/
githubmirror
/
libmicrohttpd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
w32/common/apps-build-settings.props
32 строки
1 KB
Evgeny Grin (Karlson2k)
W32 VS Project: minor internal fixes, fixed files for "dist"
01 июн 2023, 13:28
Не верифицирован
01 июн 2023, 13:28
36af216
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup Condition="'$(Configuration)'=='Debug-static'"> <TargetName>$(ProjectName)_d</TargetName> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Debug-dll'"> <TargetName>$(ProjectName)-dll_d</TargetName> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Release-static'"> <TargetName>$(ProjectName)</TargetName> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Release-dll'"> <TargetName>$(ProjectName)-dll</TargetName> </PropertyGroup> <ItemDefinitionGroup> <ClCompile> <PreprocessorDefinitions>_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> </ClCompile> <Link> <SubSystem>Console</SubSystem> </Link> <ProjectReference /> </ItemDefinitionGroup> <ItemDefinitionGroup> <ClCompile> <RuntimeLibrary Condition="'$(Configuration)'=='Debug-static'">MultiThreadedDebug</RuntimeLibrary> <RuntimeLibrary Condition="'$(Configuration)'=='Debug-dll'">MultiThreadedDebugDLL</RuntimeLibrary> <RuntimeLibrary Condition="'$(Configuration)'=='Release-static'">MultiThreaded</RuntimeLibrary> <RuntimeLibrary Condition="'$(Configuration)'=='Release-dll'">MultiThreadedDLL</RuntimeLibrary> </ClCompile> </ItemDefinitionGroup> </Project>