summaryrefslogtreecommitdiff
path: root/src/pluginlist.cpp
diff options
context:
space:
mode:
authorMikaƫl Capelle <capelle.mikael@gmail.com>2025-05-29 11:04:36 +0200
committerGitHub <noreply@github.com>2025-05-29 11:04:36 +0200
commit39210af3e59c929cba6de2d39ef1c32835f6388b (patch)
treeb77879fa376e7bfa016b14aa7635e7202b6cc69e /src/pluginlist.cpp
parent3a8ea3cccee06397e90305e1e39a305f8b7c3cb3 (diff)
Move to VCPKG (#2068)
* Remove SConscript related files. * Force-load translations from uibase and gamebryo/creation. * Bring githubpp here and add a standalone preset. * Switch VersionInfo -> Version for ModOrganizer2. (#2063) * Add pre-commit hook. * Use 7zip build from VCPKG registry. * Use archive.dll from the bin folder instead of dlls.
Diffstat (limited to 'src/pluginlist.cpp')
-rw-r--r--src/pluginlist.cpp37
1 files changed, 18 insertions, 19 deletions
diff --git a/src/pluginlist.cpp b/src/pluginlist.cpp
index 62284543..e476f8f2 100644
--- a/src/pluginlist.cpp
+++ b/src/pluginlist.cpp
@@ -16,24 +16,11 @@ GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
*/
-
#include "pluginlist.h"
-#include "modinfo.h"
-#include "modlist.h"
-#include "scopeguard.h"
-#include "settings.h"
-#include "shared/directoryentry.h"
-#include "shared/fileentry.h"
-#include "shared/filesorigin.h"
-#include "viewmarkingscrollbar.h"
-#include "shared/windows_error.h"
-#include <espfile.h>
-#include <gameplugins.h>
-#include <iplugingame.h>
-#include <report.h>
-#include <safewritefile.h>
-#include <utility.h>
+#include <algorithm>
+#include <ctime>
+#include <stdexcept>
#include <QApplication>
#include <QCoreApplication>
@@ -50,11 +37,23 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include <QString>
#include <QtDebug>
-#include <algorithm>
-#include <ctime>
-#include <stdexcept>
+#include <esptk/espfile.h>
+#include <uibase/iplugingame.h>
+#include <uibase/report.h>
+#include <uibase/safewritefile.h>
+#include <uibase/scopeguard.h>
+#include <uibase/utility.h>
+#include "gameplugins.h"
+#include "modinfo.h"
+#include "modlist.h"
#include "organizercore.h"
+#include "settings.h"
+#include "shared/directoryentry.h"
+#include "shared/fileentry.h"
+#include "shared/filesorigin.h"
+#include "shared/windows_error.h"
+#include "viewmarkingscrollbar.h"
using namespace MOBase;
using namespace MOShared;