diff options
author | Karlson2k <k2k@narod.ru> | 2013-10-30 21:02:16 +0400 |
---|---|---|
committer | Karlson2k <k2k@narod.ru> | 2013-10-30 21:08:14 +0400 |
commit | 821436673a4382968101f9ba34136bd5e5a0f4eb (patch) | |
tree | 14d719ebd325a778fa3e742ddb05b1aaeb4e3a4e /lib/libass | |
parent | 9f8682de034caaf367d55b2c3c448254d5e8b320 (diff) |
[win32] mark debug/release configs with proper internal marks
VS project wizard generate project with such marks, should help MSBuild to correctly configure internal staff.
Seems that correct XBMC marks was lost on conversion from old projects.
Diffstat (limited to 'lib/libass')
-rw-r--r-- | lib/libass/xbmc/libass_win32/libass_win32_vs2010.vcxproj | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libass/xbmc/libass_win32/libass_win32_vs2010.vcxproj b/lib/libass/xbmc/libass_win32/libass_win32_vs2010.vcxproj index 8019c68145..26d82dc86a 100644 --- a/lib/libass/xbmc/libass_win32/libass_win32_vs2010.vcxproj +++ b/lib/libass/xbmc/libass_win32/libass_win32_vs2010.vcxproj @@ -19,10 +19,12 @@ <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> <ConfigurationType>DynamicLibrary</ConfigurationType> + <UseDebugLibraries>false</UseDebugLibraries> <CharacterSet>Unicode</CharacterSet> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> <ConfigurationType>DynamicLibrary</ConfigurationType> + <UseDebugLibraries>true</UseDebugLibraries> <CharacterSet>Unicode</CharacterSet> </PropertyGroup> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" /> |