Disable automatic include sorting...

pull/130/head
Peter Repukat 3 years ago
parent 93c35f1e0b
commit 2a805b488b

@ -4,4 +4,5 @@ BreakBeforeBraces: "Stroustrup"
AllowShortIfStatementsOnASingleLine: false
IndentCaseLabels: false
ColumnLimit: 0
PointerAlignment: "Left"
PointerAlignment: "Left"
SortIncludes: false

@ -18,12 +18,14 @@ limitations under the License.
#include <string>
#include <SFML/Graphics.hpp>
#include <spdlog/spdlog.h>
#define IMGUI_USER_CONFIG "imconfig.h"
#include "imgui-SFML.h"
#include "imgui.h"
#include <chrono>
#include <spdlog/spdlog.h>
class Overlay {
public:
Overlay(sf::RenderWindow& window, std::function<void()> on_close);

@ -1,8 +1,9 @@
#pragma once
#include <spdlog/spdlog.h>
#include "Overlay.h"
namespace spdlog {
namespace sinks {
@ -31,7 +32,6 @@ class overlay_sink : public spdlog::sinks::base_sink<Mutex> {
{
// Don't format log message.
}
};
using overlay_sink_mt = overlay_sink<std::mutex>;

@ -51,8 +51,8 @@ END
//
VS_VERSION_INFO VERSIONINFO
FILEVERSION 0,0,0,0190104
PRODUCTVERSION 0,0,0,0190104
FILEVERSION 0,0,0,9303501
PRODUCTVERSION 0,0,0,9303501
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@ -69,12 +69,12 @@ BEGIN
BEGIN
VALUE "CompanyName", "Peter Repukat - FlatspotSoftware"
VALUE "FileDescription", "GlosSI - SteamTarget"
VALUE "FileVersion", "0.0.0.c19b1e4"
VALUE "FileVersion", "0.0.0.93c35f1"
VALUE "InternalName", "GlosSITarget"
VALUE "LegalCopyright", "Copyright (C) 2021 Peter Repukat - FlatspotSoftware"
VALUE "OriginalFilename", "GlosSITarget.exe"
VALUE "ProductName", "GlosSI"
VALUE "ProductVersion", "0.0.0.c19b1e4"
VALUE "ProductVersion", "0.0.0.93c35f1"
END
END
BLOCK "VarFileInfo"
@ -175,6 +175,10 @@ END

@ -18,13 +18,14 @@ limitations under the License.
#include <Windows.h>
#endif
#include <spdlog/sinks/basic_file_sink.h>
#include <spdlog/sinks/stdout_color_sinks.h>
#include <spdlog/spdlog.h>
#include "SteamTarget.h"
#include "OverlayLogSink.h"
#include "Settings.h"
#include <spdlog/sinks/basic_file_sink.h>
#include <spdlog/sinks/stdout_color_sinks.h>
#include <spdlog/spdlog.h>
#ifdef _WIN32
#ifdef CONSOLE

Loading…
Cancel
Save