mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-10-12 17:49:03 +00:00
chore: only set debug webview mode on debug compile
This commit is contained in:
@@ -1,12 +1,12 @@
|
|||||||
#include "AssetHandlerEdge.h"
|
#include "AssetHandlerEdge.h"
|
||||||
|
|
||||||
|
#if defined(WEBVIEW_PLATFORM_WINDOWS) && defined(WEBVIEW_EDGE)
|
||||||
|
|
||||||
#pragma warning(push, 0)
|
#pragma warning(push, 0)
|
||||||
#include <webview/macros.h>
|
#include <webview/macros.h>
|
||||||
#include <webview/webview.h>
|
#include <webview/webview.h>
|
||||||
#pragma warning(pop)
|
#pragma warning(pop)
|
||||||
|
|
||||||
#if defined(WEBVIEW_PLATFORM_WINDOWS) && defined(WEBVIEW_EDGE)
|
|
||||||
|
|
||||||
#include "Web/UiAssets.h"
|
#include "Web/UiAssets.h"
|
||||||
|
|
||||||
#include <Windows.h>
|
#include <Windows.h>
|
||||||
|
@@ -1,8 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#pragma warning(push, 0)
|
|
||||||
#include <webview/macros.h>
|
#include <webview/macros.h>
|
||||||
#pragma warning(pop)
|
|
||||||
|
|
||||||
#if defined(WEBVIEW_PLATFORM_WINDOWS) && defined(WEBVIEW_EDGE)
|
#if defined(WEBVIEW_PLATFORM_WINDOWS) && defined(WEBVIEW_EDGE)
|
||||||
|
|
||||||
|
@@ -1,21 +1,18 @@
|
|||||||
#include "AssetHandlerGtk.h"
|
#include "AssetHandlerGtk.h"
|
||||||
|
|
||||||
#pragma warning(push, 0)
|
#if defined(WEBVIEW_PLATFORM_LINUX) && defined(WEBVIEW_GTK)
|
||||||
|
|
||||||
|
#pragma GCC diagnostic push
|
||||||
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
||||||
#include <webview/macros.h>
|
#include <webview/macros.h>
|
||||||
#include <webview/webview.h>
|
#include <webview/webview.h>
|
||||||
#pragma warning(pop)
|
#pragma GCC diagnostic pop
|
||||||
|
|
||||||
#if defined(WEBVIEW_PLATFORM_LINUX) && defined(WEBVIEW_GTK)
|
|
||||||
|
|
||||||
#include "Web/UiAssets.h"
|
#include "Web/UiAssets.h"
|
||||||
|
|
||||||
#include <format>
|
#include <format>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
#define G_SPAWN_ERROR g_spawn_error_quark()
|
|
||||||
|
|
||||||
G_DEFINE_QUARK(g - spawn - error - quark, g_spawn_error)
|
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
{
|
{
|
||||||
std::unordered_map<std::string, UiFile> assetLookup;
|
std::unordered_map<std::string, UiFile> assetLookup;
|
||||||
|
@@ -1,14 +1,13 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#pragma warning(push, 0)
|
|
||||||
#include <webview/macros.h>
|
#include <webview/macros.h>
|
||||||
#pragma warning(pop)
|
|
||||||
|
|
||||||
#if defined(WEBVIEW_PLATFORM_LINUX) && defined(WEBVIEW_GTK)
|
#if defined(WEBVIEW_PLATFORM_LINUX) && defined(WEBVIEW_GTK)
|
||||||
|
|
||||||
#pragma warning(push, 0)
|
#pragma GCC diagnostic push
|
||||||
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
||||||
#include <webview/webview.h>
|
#include <webview/webview.h>
|
||||||
#pragma warning(pop)
|
#pragma GCC diagnostic pop
|
||||||
|
|
||||||
namespace gtk
|
namespace gtk
|
||||||
{
|
{
|
||||||
|
@@ -1,6 +1,17 @@
|
|||||||
#pragma warning(push, 0)
|
#ifdef _MSC_VER
|
||||||
|
#pragma warning(push, 0)
|
||||||
|
#else
|
||||||
|
#pragma GCC diagnostic push
|
||||||
|
#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "webview/webview.h"
|
#include "webview/webview.h"
|
||||||
|
|
||||||
|
#ifdef _MSC_VER
|
||||||
#pragma warning(pop)
|
#pragma warning(pop)
|
||||||
|
#else
|
||||||
|
#pragma GCC diagnostic pop
|
||||||
|
#endif
|
||||||
|
|
||||||
#include "Web/Edge/AssetHandlerEdge.h"
|
#include "Web/Edge/AssetHandlerEdge.h"
|
||||||
#include "Web/Gtk/AssetHandlerGtk.h"
|
#include "Web/Gtk/AssetHandlerGtk.h"
|
||||||
@@ -41,7 +52,13 @@ namespace
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
webview::webview w(true, nullptr);
|
webview::webview w(
|
||||||
|
#ifdef _DEBUG
|
||||||
|
true,
|
||||||
|
#else
|
||||||
|
false,
|
||||||
|
#endif
|
||||||
|
nullptr);
|
||||||
w.set_title("OpenAssetTools ModMan");
|
w.set_title("OpenAssetTools ModMan");
|
||||||
w.set_size(1280, 640, WEBVIEW_HINT_NONE);
|
w.set_size(1280, 640, WEBVIEW_HINT_NONE);
|
||||||
w.set_size(480, 320, WEBVIEW_HINT_MIN);
|
w.set_size(480, 320, WEBVIEW_HINT_MIN);
|
||||||
|
Reference in New Issue
Block a user