diff options
author | F1F7Y <64418963+F1F7Y@users.noreply.github.com> | 2023-07-28 23:26:13 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2023-07-28 23:45:05 +0200 |
commit | 99e3d106d869866abf8bded9ee4dba9726fe767c (patch) | |
tree | 8c88950bc2ad497dcfc512006e88af9a987dcd75 /NorthstarDLL/plugins | |
parent | a2ed8c19fe19adf774d059f7167b611471ce373a (diff) | |
download | NorthstarLauncher-99e3d106d869866abf8bded9ee4dba9726fe767c.tar.gz NorthstarLauncher-99e3d106d869866abf8bded9ee4dba9726fe767c.zip |
Remove `pch.cpp` and all `#include "pch.h"` occurrences (#519)v1.17.2-rc1v1.17.2
With the move to cmake there is no need for the `pch.cpp` files as it generates them automatically.
Also removes leftover `#include "pch.h"` occurrences
(cherry picked from commit 82bff57d166ece1173ca7df33940171548015a71)
Diffstat (limited to 'NorthstarDLL/plugins')
-rw-r--r-- | NorthstarDLL/plugins/pluginbackend.cpp | 1 | ||||
-rw-r--r-- | NorthstarDLL/plugins/pluginbackend.h | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/NorthstarDLL/plugins/pluginbackend.cpp b/NorthstarDLL/plugins/pluginbackend.cpp index b442d702..091ddd2f 100644 --- a/NorthstarDLL/plugins/pluginbackend.cpp +++ b/NorthstarDLL/plugins/pluginbackend.cpp @@ -1,4 +1,3 @@ -#include "pch.h" #include "pluginbackend.h" #include "plugin_abi.h" #include "server/serverpresence.h" diff --git a/NorthstarDLL/plugins/pluginbackend.h b/NorthstarDLL/plugins/pluginbackend.h index ef42c508..898b3a99 100644 --- a/NorthstarDLL/plugins/pluginbackend.h +++ b/NorthstarDLL/plugins/pluginbackend.h @@ -1,5 +1,4 @@ #pragma once -#include "pch.h" #include "plugin_abi.h" #include "shared/gamepresence.h" |