From 93a55c6468904df04c8d6f4100e9643951886e39 Mon Sep 17 00:00:00 2001 From: John McCardle Date: Thu, 10 Jul 2025 16:43:05 -0400 Subject: [PATCH] hotfix: windows build fixes --- CMakeLists.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 274b03d..4694771 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -22,10 +22,6 @@ file(GLOB_RECURSE SOURCES "src/*.cpp") # Create a list of libraries to link against set(LINK_LIBS - m - dl - util - pthread python3.12 sfml-graphics sfml-window @@ -41,6 +37,8 @@ if(WIN32) # list(APPEND LINK_LIBS additional_windows_libs) include_directories(${CMAKE_SOURCE_DIR}/deps/platform/windows) else() + # Unix/Linux specific libraries + list(APPEND LINK_LIBS m dl util pthread) include_directories(${CMAKE_SOURCE_DIR}/deps/platform/linux) endif()