From e2e44ff1baf1f060110f5d94cafdf09d82ffd3ae Mon Sep 17 00:00:00 2001 From: hamx01 Date: Fri, 6 Dec 2024 19:43:17 +0100 Subject: [PATCH] Mac and Linux fix --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1a16cba..6eacb45 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -42,9 +42,9 @@ if(WIN32) target_link_libraries(LotoStatek ${SFML_LIBRARIES}) endif() elseif(APPLE) - find_package(lib/SFML 2.6.2 COMPONENTS graphics window system REQUIRED) + find_package(SFML 2.6.2 COMPONENTS graphics window system REQUIRED) target_link_libraries(LotoStatek sfml-graphics sfml-window sfml-audio sfml-system) elseif(LINUX) - find_package(lib/SFML 2.6.2 COMPONENTS graphics window system REQUIRED) + find_package(SFML 2.6.2 COMPONENTS graphics window system REQUIRED) target_link_libraries(LotoStatek sfml-graphics sfml-window sfml-audio sfml-system) endif() \ No newline at end of file