Use "" to access the fmt headers, not <>, or else Windows can't find the

fallback library.
This commit is contained in:
David Given
2024-10-09 15:10:22 +02:00
parent e154e41bc0
commit f5b14cadf8
14 changed files with 14 additions and 14 deletions

View File

@@ -1,7 +1,7 @@
#include "lib/globals.h"
#include "lib/proto.h"
#include "lib/flags.h"
#include <fmt/format.h>
#include "fmt/format.h"
extern const std::map<std::string, const ConfigProto*> formats;

View File

@@ -1,7 +1,7 @@
#include "lib/globals.h"
#include "lib/proto.h"
#include "lib/flags.h"
#include <fmt/format.h>
#include "fmt/format.h"
extern const std::map<std::string, const ConfigProto*> formats;

View File

@@ -2,7 +2,7 @@
#include <google/protobuf/text_format.h>
#include <google/protobuf/io/zero_copy_stream_impl.h>
#include <fstream>
#include <fmt/format.h>
#include "fmt/format.h"
#include "tests/testproto.pb.h"
#include "lib/config.pb.h"
#include <sstream>