| Revision | 7e5717cd30581bb8b4372917b1376832bbf4beaf (tree) |
|---|---|
| Time | 2022-07-19 13:13:50 |
| Author | IWAMOTO Kouichi <sue@iwmt...> |
| Commiter | IWAMOTO Kouichi |
VS2019用プロジェクトファイルを調整
主にWarning消し
・MinimalRebuildの無効化
・UseDebugLibrariesを追加
ついでにファイルのパーミッション調整も実施
| @@ -18,12 +18,14 @@ | ||
| 18 | 18 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> |
| 19 | 19 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> |
| 20 | 20 | <ConfigurationType>DynamicLibrary</ConfigurationType> |
| 21 | + <UseDebugLibraries>false</UseDebugLibraries> | |
| 21 | 22 | <PlatformToolset>v142</PlatformToolset> |
| 22 | 23 | <CharacterSet>NotSet</CharacterSet> |
| 23 | 24 | <WholeProgramOptimization>true</WholeProgramOptimization> |
| 24 | 25 | </PropertyGroup> |
| 25 | 26 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> |
| 26 | 27 | <ConfigurationType>DynamicLibrary</ConfigurationType> |
| 28 | + <UseDebugLibraries>true</UseDebugLibraries> | |
| 27 | 29 | <PlatformToolset>v142</PlatformToolset> |
| 28 | 30 | <CharacterSet>NotSet</CharacterSet> |
| 29 | 31 | </PropertyGroup> |
| @@ -55,7 +57,7 @@ | ||
| 55 | 57 | <Optimization>Disabled</Optimization> |
| 56 | 58 | <AdditionalIncludeDirectories>$(SolutionDir)..\teraterm\common;$(SolutionDir)..\teraterm\teraterm;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> |
| 57 | 59 | <PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;_USRDLL;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 58 | - <MinimalRebuild>true</MinimalRebuild> | |
| 60 | + <MinimalRebuild>false</MinimalRebuild> | |
| 59 | 61 | <BasicRuntimeChecks>EnableFastChecks</BasicRuntimeChecks> |
| 60 | 62 | <RuntimeLibrary>MultiThreadedDebug</RuntimeLibrary> |
| 61 | 63 | <PrecompiledHeader /> |