/
githubmirror
/
libusb
Обзор
Документация
Войти
/
githubmirror
/
libusb
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v1.0.29
msvc/Configuration.DynamicLibrary.props
21 строка
857 B
Sonatique
msvc: Add configurations with /MT compilation flag
18 янв 2023, 15:45
18 янв 2023, 15:45
285b292
Код
Авторство
О чём код?
<?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-MT'"> <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> </ClCompile> <ClCompile Condition="'$(Configuration)'=='Release'"> <RuntimeLibrary>MultiThreadedDLL</RuntimeLibrary> </ClCompile> <ClCompile Condition="'$(Configuration)'=='Release-MT'"> <RuntimeLibrary>MultiThreaded</RuntimeLibrary> </ClCompile> </ItemDefinitionGroup> </Project>