|
78 | 78 | <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /> |
79 | 79 | </ImportGroup> |
80 | 80 | <PropertyGroup Label="UserMacros" /> |
| 81 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'"> |
| 82 | + <IncludePath>$(ProjectDir);$(IncludePath)</IncludePath> |
| 83 | + </PropertyGroup> |
| 84 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'"> |
| 85 | + <IncludePath>$(ProjectDir);$(IncludePath)</IncludePath> |
| 86 | + </PropertyGroup> |
| 87 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
| 88 | + <IncludePath>$(ProjectDir);$(IncludePath)</IncludePath> |
| 89 | + </PropertyGroup> |
| 90 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> |
| 91 | + <IncludePath>$(ProjectDir);$(IncludePath)</IncludePath> |
| 92 | + </PropertyGroup> |
| 93 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'"> |
| 94 | + <IncludePath>$(ProjectDir);$(IncludePath)</IncludePath> |
| 95 | + </PropertyGroup> |
| 96 | + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'"> |
| 97 | + <IncludePath>$(ProjectDir);$(IncludePath)</IncludePath> |
| 98 | + </PropertyGroup> |
81 | 99 | <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> |
82 | 100 | <ClCompile> |
83 | 101 | <SDLCheck>true</SDLCheck> |
84 | 102 | <PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 103 | + <PrecompiledHeader>Use</PrecompiledHeader> |
85 | 104 | </ClCompile> |
86 | 105 | <Link> |
87 | 106 | <SubSystem>Console</SubSystem> |
|
93 | 112 | <IntrinsicFunctions>true</IntrinsicFunctions> |
94 | 113 | <SDLCheck>true</SDLCheck> |
95 | 114 | <PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 115 | + <PrecompiledHeader>Use</PrecompiledHeader> |
96 | 116 | </ClCompile> |
97 | 117 | <Link> |
98 | 118 | <SubSystem>Console</SubSystem> |
|
102 | 122 | <ClCompile> |
103 | 123 | <SDLCheck>true</SDLCheck> |
104 | 124 | <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 125 | + <PrecompiledHeader>Use</PrecompiledHeader> |
105 | 126 | </ClCompile> |
106 | 127 | <Link> |
107 | 128 | <SubSystem>Console</SubSystem> |
|
111 | 132 | <ClCompile> |
112 | 133 | <SDLCheck>true</SDLCheck> |
113 | 134 | <PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 135 | + <PrecompiledHeader>Use</PrecompiledHeader> |
114 | 136 | </ClCompile> |
115 | 137 | <Link> |
116 | 138 | <SubSystem>Console</SubSystem> |
|
122 | 144 | <IntrinsicFunctions>true</IntrinsicFunctions> |
123 | 145 | <SDLCheck>true</SDLCheck> |
124 | 146 | <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 147 | + <PrecompiledHeader>Use</PrecompiledHeader> |
125 | 148 | </ClCompile> |
126 | 149 | <Link> |
127 | 150 | <SubSystem>Console</SubSystem> |
|
133 | 156 | <IntrinsicFunctions>true</IntrinsicFunctions> |
134 | 157 | <SDLCheck>true</SDLCheck> |
135 | 158 | <PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions> |
| 159 | + <PrecompiledHeader>Use</PrecompiledHeader> |
136 | 160 | </ClCompile> |
137 | 161 | <Link> |
138 | 162 | <SubSystem>Console</SubSystem> |
139 | 163 | </Link> |
140 | 164 | </ItemDefinitionGroup> |
141 | 165 | <ItemGroup> |
142 | | - <ClInclude Include="Public.h" /> |
| 166 | + <ClInclude Include="pch.h" /> |
143 | 167 | </ItemGroup> |
144 | 168 | <ItemGroup> |
145 | | - <ClCompile Include="DataStructure\LinkedListReverse.c" /> |
| 169 | + <ClCompile Include="DataStructure\LinkedList\Reverse.c" /> |
146 | 170 | <ClCompile Include="Main.c" /> |
147 | 171 | <ClCompile Include="Print\MultiplicationTable.c" /> |
148 | | - <ClCompile Include="Public.c" /> |
| 172 | + <ClCompile Include="pch.c"> |
| 173 | + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">Create</PrecompiledHeader> |
| 174 | + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">Create</PrecompiledHeader> |
| 175 | + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">Create</PrecompiledHeader> |
| 176 | + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">Create</PrecompiledHeader> |
| 177 | + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">Create</PrecompiledHeader> |
| 178 | + <PrecompiledHeader Condition="'$(Configuration)|$(Platform)'=='Release|x64'">Create</PrecompiledHeader> |
| 179 | + </ClCompile> |
149 | 180 | </ItemGroup> |
150 | 181 | <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> |
151 | 182 | <ImportGroup Label="ExtensionTargets"> |
|
0 commit comments