Skip to content
This repository was archived by the owner on Jan 16, 2025. It is now read-only.

CMake #43

Merged
merged 4 commits into from
Sep 30, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Use non-local includes
  • Loading branch information
mkoncek committed Jun 7, 2023
commit a0cfb7c6e489f3a455ac86dd87ee52ce420deb40
2 changes: 1 addition & 1 deletion src/includer.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include "ShaderLang.h"
#include <ShaderLang.h>
#include "workspace.hpp"

class FileIncluder : public glslang::TShader::Includer {
Expand Down
16 changes: 8 additions & 8 deletions src/main.cpp
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
#include "CLI/CLI.hpp"
#include <CLI/CLI.hpp>

#include "fmt/format.h"
#include "fmt/ostream.h"
#include <fmt/format.h>
#include <fmt/ostream.h>

#include "nlohmann/json.hpp"
#include <nlohmann/json.hpp>

#include "mongoose.h"
#include <mongoose.h>

#include "ResourceLimits.h"
#include "ShaderLang.h"
#include "Initialize.h"
#include <ResourceLimits.h>
#include <ShaderLang.h>
#include <Initialize.h>

#include <cstdint>
#include <filesystem>
Expand Down
2 changes: 1 addition & 1 deletion src/messagebuffer.hpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#ifndef MESSAGEBUFFER_H
#define MESSAGEBUFFER_H

#include "nlohmann/json.hpp"
#include <nlohmann/json.hpp>

#include <string>
#include <tuple>
Expand Down