diff options
author | HampusM <hampus@hampusmat.com> | 2022-01-10 17:37:42 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-01-10 17:37:42 +0100 |
commit | e2e15bbf141b17b74b611e32a66891ab6ee331bb (patch) | |
tree | 861c71ae9a108d570aaee434044ada2a6816b657 /CMakeLists.txt | |
parent | 8ceb79db1d0687bba005cef4a77bb889bf7ec3c3 (diff) |
refactor: remove usage of the fmt lib & clean up
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index fef9749..a78fd44 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,9 +9,6 @@ file(GLOB SOURCES src/*.cpp) add_executable(mazerator ${SOURCES}) -find_package(fmt) -target_link_libraries(mazerator fmt::fmt) - target_compile_features(mazerator PUBLIC cxx_std_17) target_compile_options(mazerator PRIVATE -Werror -Wall -Wextra) |