pch.h -> pch.hpp

Signed-off-by: Simon Rozman <simon@rozman.si>
This commit is contained in:
Simon Rozman 2023-09-25 15:05:36 +02:00
parent 4e25c13d08
commit b8fae2d0dd
13 changed files with 14 additions and 14 deletions

View File

@ -82,7 +82,7 @@
<AdditionalIncludeDirectories>..\include;$(VCInstallDir)UnitTest\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories> <AdditionalIncludeDirectories>..\include;$(VCInstallDir)UnitTest\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<PreprocessorDefinitions>WIN32_LEAN_AND_MEAN;%(PreprocessorDefinitions)</PreprocessorDefinitions> <PreprocessorDefinitions>WIN32_LEAN_AND_MEAN;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<UseFullPaths>true</UseFullPaths> <UseFullPaths>true</UseFullPaths>
<PrecompiledHeaderFile>pch.h</PrecompiledHeaderFile> <PrecompiledHeaderFile>pch.hpp</PrecompiledHeaderFile>
<LanguageStandard>stdcpp17</LanguageStandard> <LanguageStandard>stdcpp17</LanguageStandard>
</ClCompile> </ClCompile>
<Link> <Link>
@ -131,7 +131,7 @@
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="compat.hpp" /> <ClInclude Include="compat.hpp" />
<ClInclude Include="pch.h" /> <ClInclude Include="pch.hpp" />
</ItemGroup> </ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets"> <ImportGroup Label="ExtensionTargets">

View File

@ -41,7 +41,7 @@
</ClCompile> </ClCompile>
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ClInclude Include="pch.h"> <ClInclude Include="pch.hpp">
<Filter>Header Files</Filter> <Filter>Header Files</Filter>
</ClInclude> </ClInclude>
<ClInclude Include="compat.hpp"> <ClInclude Include="compat.hpp">

View File

@ -49,7 +49,7 @@
F437AA902AC1BB64001E2230 /* hash.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = hash.cpp; sourceTree = "<group>"; }; F437AA902AC1BB64001E2230 /* hash.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = hash.cpp; sourceTree = "<group>"; };
F4B7FBDC2AAF49BC00C6BE9F /* UnitTests */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = UnitTests; sourceTree = BUILT_PRODUCTS_DIR; }; F4B7FBDC2AAF49BC00C6BE9F /* UnitTests */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = UnitTests; sourceTree = BUILT_PRODUCTS_DIR; };
F4C07F4E2AB059300044EDC0 /* math.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = math.cpp; sourceTree = "<group>"; }; F4C07F4E2AB059300044EDC0 /* math.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = math.cpp; sourceTree = "<group>"; };
F4C07F502AB059580044EDC0 /* pch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pch.h; sourceTree = "<group>"; }; F4C07F502AB059580044EDC0 /* pch.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pch.hpp; sourceTree = "<group>"; };
F4C07F512AB059580044EDC0 /* pch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pch.cpp; sourceTree = "<group>"; }; F4C07F512AB059580044EDC0 /* pch.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = pch.cpp; sourceTree = "<group>"; };
F4C07F532AB05A240044EDC0 /* compat.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = compat.hpp; sourceTree = "<group>"; }; F4C07F532AB05A240044EDC0 /* compat.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = compat.hpp; sourceTree = "<group>"; };
F4C07F542AB05B5B0044EDC0 /* main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; }; F4C07F542AB05B5B0044EDC0 /* main.cpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
@ -109,7 +109,7 @@
F4C07F4E2AB059300044EDC0 /* math.cpp */, F4C07F4E2AB059300044EDC0 /* math.cpp */,
F4C07F562AB08E690044EDC0 /* parser.cpp */, F4C07F562AB08E690044EDC0 /* parser.cpp */,
F4C07F512AB059580044EDC0 /* pch.cpp */, F4C07F512AB059580044EDC0 /* pch.cpp */,
F4C07F502AB059580044EDC0 /* pch.h */, F4C07F502AB059580044EDC0 /* pch.hpp */,
F4B7FBDD2AAF49BC00C6BE9F /* Products */, F4B7FBDD2AAF49BC00C6BE9F /* Products */,
F4C07F592AB08E690044EDC0 /* ring.cpp */, F4C07F592AB08E690044EDC0 /* ring.cpp */,
F4C07F582AB08E690044EDC0 /* sgml.cpp */, F4C07F582AB08E690044EDC0 /* sgml.cpp */,

View File

@ -3,7 +3,7 @@
Copyright © 2023 Amebis Copyright © 2023 Amebis
*/ */
#include "pch.h" #include "pch.hpp"
using namespace std; using namespace std;
#ifdef _WIN32 #ifdef _WIN32

View File

@ -3,7 +3,7 @@
Copyright © 2023 Amebis Copyright © 2023 Amebis
*/ */
#include "pch.h" #include "pch.hpp"
#include "hash.cpp" #include "hash.cpp"
#include "math.cpp" #include "math.cpp"
#include "parser.cpp" #include "parser.cpp"

View File

@ -3,7 +3,7 @@
Copyright © 2023 Amebis Copyright © 2023 Amebis
*/ */
#include "pch.h" #include "pch.hpp"
using namespace std; using namespace std;
#ifdef _WIN32 #ifdef _WIN32

View File

@ -3,7 +3,7 @@
Copyright © 2023 Amebis Copyright © 2023 Amebis
*/ */
#include "pch.h" #include "pch.hpp"
using namespace std; using namespace std;
using namespace stdex; using namespace stdex;

View File

@ -3,4 +3,4 @@
Copyright © 2023 Amebis Copyright © 2023 Amebis
*/ */
#include "pch.h" #include "pch.hpp"

View File

@ -3,7 +3,7 @@
Copyright © 2023 Amebis Copyright © 2023 Amebis
*/ */
#include "pch.h" #include "pch.hpp"
using namespace std; using namespace std;
#ifdef _WIN32 #ifdef _WIN32

View File

@ -3,7 +3,7 @@
Copyright © 2023 Amebis Copyright © 2023 Amebis
*/ */
#include "pch.h" #include "pch.hpp"
using namespace std; using namespace std;
#ifdef _WIN32 #ifdef _WIN32

View File

@ -3,7 +3,7 @@
Copyright © 2023 Amebis Copyright © 2023 Amebis
*/ */
#include "pch.h" #include "pch.hpp"
using namespace std; using namespace std;
using namespace stdex; using namespace stdex;

View File

@ -3,7 +3,7 @@
Copyright © 2023 Amebis Copyright © 2023 Amebis
*/ */
#include "pch.h" #include "pch.hpp"
using namespace std; using namespace std;
#ifdef _WIN32 #ifdef _WIN32