/
githubmirror
/
libusb
Обзор
Документация
Войти
/
githubmirror
/
libusb
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
msvc/Configuration.DynamicLibrary.props
33 строки
1 KB
Sylvain Fasel
windows: hotplug implementation
26 авг 2025, 22:46
26 авг 2025, 22:46
0110ab5
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <Import Project="Configuration.Base.props" /> <PropertyGroup Label="Configuration"> <ConfigurationType>DynamicLibrary</ConfigurationType> </PropertyGroup> <ItemDefinitionGroup> <ClCompile Condition="'$(Configuration)'=='Debug'"> <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> </ClCompile> <ClCompile Condition="'$(Configuration)'=='Debug-Hotplug'"> <RuntimeLibrary>MultiThreadedDebugDLL</RuntimeLibrary> </ClCompile> <ClCompile Condition="'$(Configuration)'=='Debug-MT'"> <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> </ClCompile> <ClCompile Condition="'$(Configuration)'=='Debug-Hotplug-MT'"> <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> </ClCompile> <ClCompile Condition="'$(Configuration)'=='Release'"> <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> </ClCompile> <ClCompile Condition="'$(Configuration)'=='Release-Hotplug'"> <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> </ClCompile> <ClCompile Condition="'$(Configuration)'=='Release-MT'"> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> </ClCompile> <ClCompile Condition="'$(Configuration)'=='Release-Hotplug-MT'"> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> </ClCompile> </ItemDefinitionGroup> </Project>