[outlineviewer] Fix thirdparty library include sorting (#5683)

This commit is contained in:
Tyler Veness
2023-09-27 21:45:46 -07:00
committed by GitHub
parent 5f651df5d5
commit 7b70e66772
2 changed files with 14 additions and 8 deletions

View File

@@ -21,8 +21,15 @@ repoRootNameOverride {
includeOtherLibs {
^GLFW
^fmt/
^frc/
^glass/
^gtest/
^imgui
^implot\.h$
^networktables/
^portable-file-dialogs\.h$
^ntcore
^units/
^wpi/
^wpigui
}

View File

@@ -6,18 +6,17 @@
#include <GLFW/glfw3.h>
#include <fmt/format.h>
#include <glass/Context.h>
#include <glass/MainMenuBar.h>
#include <glass/Model.h>
#include <glass/Storage.h>
#include <glass/networktables/NetworkTables.h>
#include <glass/networktables/NetworkTablesSettings.h>
#include <glass/other/Log.h>
#include <imgui.h>
#include <ntcore_cpp.h>
#include <wpigui.h>
#include "glass/Context.h"
#include "glass/MainMenuBar.h"
#include "glass/Model.h"
#include "glass/Storage.h"
#include "glass/networktables/NetworkTables.h"
#include "glass/networktables/NetworkTablesSettings.h"
#include "glass/other/Log.h"
namespace gui = wpi::gui;
const char* GetWPILibVersion();