Skip to content

Commit

Permalink
Add new fmt library.
Browse files Browse the repository at this point in the history
  • Loading branch information
hwalinga committed Oct 24, 2024
1 parent f5d4175 commit e6aa31f
Show file tree
Hide file tree
Showing 184 changed files with 86,947 additions and 14,140 deletions.
6 changes: 3 additions & 3 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ endif()
option(COMPILE_DOCS "This is settable from the command line" OFF)

add_subdirectory(source/utility/lexy)
add_subdirectory(source/utility/fmt-9.1.0)
add_subdirectory(source/utility/fmt-11.0.2)

if (MSVC)
add_compile_options("/W4" "$<$<CONFIG:RELEASE>:/O2>")
Expand All @@ -34,7 +34,7 @@ include_directories("${PROJECT_SOURCE_DIR}"
"${PROJECT_SOURCE_DIR}/source/evaluation"
"${PROJECT_SOURCE_DIR}/source/utility"
"${PROJECT_SOURCE_DIR}/source/utility/lexy/include"
"${PROJECT_SOURCE_DIR}/source/utility/fmt-9.1.0/include")
"${PROJECT_SOURCE_DIR}/source/utility/fmt-11.0.2/include")

add_subdirectory(source)

Expand Down Expand Up @@ -133,4 +133,4 @@ endif()
if (NOT APPLE)
set_property(TARGET flexfringe PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
set_property(TARGET runtests PROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
endif()
endif()
2 changes: 2 additions & 0 deletions source/input/parsers/grammar/abbadingosymbol.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,10 @@
#include <vector>
#include <set>
#include <iostream>
#include <optional>
#include <fmt/format.h>
#include <fmt/ostream.h>
#include <fmt/ranges.h>


struct abbadingo_symbol_info {
Expand Down
Loading

0 comments on commit e6aa31f

Please sign in to comment.