diff options
| author | George Hazan <ghazan@miranda.im> | 2020-05-22 14:11:15 +0300 |
|---|---|---|
| committer | George Hazan <ghazan@miranda.im> | 2020-05-22 14:11:15 +0300 |
| commit | 9f75de77d912d11d49d36a9c87b3b94fe43209f1 (patch) | |
| tree | 28c98e19d9ab4189f2926399aeac3b8ced554809 /libs/libjson/libjson.vcxproj | |
| parent | 0a206851b86dee002ffa3467d9dbfd35eb0c9128 (diff) | |
fix for broken project file compatibility in VS2019 16.6.0
Diffstat (limited to 'libs/libjson/libjson.vcxproj')
| -rw-r--r-- | libs/libjson/libjson.vcxproj | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/libs/libjson/libjson.vcxproj b/libs/libjson/libjson.vcxproj index 740549ea91..1b02df84eb 100644 --- a/libs/libjson/libjson.vcxproj +++ b/libs/libjson/libjson.vcxproj @@ -25,6 +25,35 @@ <ImportGroup Label="PropertySheets">
<Import Project="$(ProjectDir)..\..\build\vc.common\lib.props" />
</ImportGroup>
+ <ItemGroup>
+ <ClCompile Include="src\internalJSONNode.cpp" />
+ <ClCompile Include="src\JSONChildren.cpp" />
+ <ClCompile Include="src\JSONDebug.cpp" />
+ <ClCompile Include="src\JSONIterators.cpp" />
+ <ClCompile Include="src\JSONMemory.cpp" />
+ <ClCompile Include="src\JSONNode.cpp" />
+ <ClCompile Include="src\JSONNode_Mutex.cpp" />
+ <ClCompile Include="src\JSONWorker.cpp" />
+ <ClCompile Include="src\JSONWriter.cpp" />
+ <ClCompile Include="src\libJSON.cpp" />
+ <ClCompile Include="src\stdafx.cxx">
+ <PrecompiledHeader>Create</PrecompiledHeader>
+ </ClCompile>
+ <ClInclude Include="src\internalJSONNode.h" />
+ <ClInclude Include="src\JSONChildren.h" />
+ <ClInclude Include="src\JSONDebug.h" />
+ <ClInclude Include="src\JSONDefs.h" />
+ <ClInclude Include="src\JSONMemory.h" />
+ <ClInclude Include="src\JSONNode.h" />
+ <ClInclude Include="src\JSONOptions.h" />
+ <ClInclude Include="src\JSONWorker.h" />
+ <ClInclude Include="src\NumberToString.h" />
+ <ClInclude Include="src\stdafx.h" />
+ </ItemGroup>
+ <ItemGroup>
+ <None Include="src\libjson.def" />
+ <None Include="src\libjson64.def" />
+ </ItemGroup>
<ItemDefinitionGroup>
<ClCompile>
<PreprocessorDefinitions Condition="'$(Configuration)'=='Debug'">LIBJSON_EXPORTS;DEBUG;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
