From 4d363ea3b20ff797eb8fe591062396f3dd9c1fb3 Mon Sep 17 00:00:00 2001 From: Ronald Caesar Date: Sun, 21 Sep 2025 18:37:06 -0400 Subject: [PATCH] Remove fmt library This library wasnt used anywhere in the source code. Signed-off-by: Ronald Caesar --- 3rd_Party/CMakeLists.txt | 5 ----- CMakeLists.txt | 1 - src/common/CMakeLists.txt | 2 -- 3 files changed, 8 deletions(-) diff --git a/3rd_Party/CMakeLists.txt b/3rd_Party/CMakeLists.txt index 4800a6f..1f2c1ff 100644 --- a/3rd_Party/CMakeLists.txt +++ b/3rd_Party/CMakeLists.txt @@ -5,11 +5,6 @@ set_directory_properties(PROPERTIES EXCLUDE_FROM_ALL ON SYSTEM ON) # Set CMP0069 policy to "NEW" for building external targets with LTO enabled set(CMAKE_POLICY_DEFAULT_CMP0069 NEW) -# fmt -if (NOT TARGET fmt::fmt) - add_subdirectory(fmt) -endif() - # SDL3 if (NOT TARGET SDL3::SDL3) set(SDL_DISKAUDIO OFF) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5157ca2..1975598 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -94,7 +94,6 @@ target_link_libraries(Pound PRIVATE kvm OpenGL::GL - fmt::fmt SDL3::SDL3 imgui ) diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 3c1ceb0..dbbf896 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -5,8 +5,6 @@ target_sources(common PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/passert.cpp ) -target_link_libraries(common PUBLIC fmt::fmt) - target_include_directories(common PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/..