diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt index b805ba7..35d7c69 100644 --- a/lib/CMakeLists.txt +++ b/lib/CMakeLists.txt @@ -1,10 +1,10 @@ -find_package(SFML COMPONENTS COMPONENTS window graphics system CONFIG REQUIRED) - find_package(fmt REQUIRED) - find_package(OpenGL REQUIRED COMPONENTS OpenGL GLX) - - file(GLOB_RECURSE sources CONFIGURE_DEPENDS "*.cpp") - - add_library(libpacman ${ sources }) - - target_include_directories(libpacman PUBLIC.) - target_link_libraries(libpacman PUBLIC fmt::fmt sfml - graphics sfml - window sfml - system OpenGL::OpenGL OpenGL::GLX) +find_package(SFML COMPONENTS COMPONENTS window graphics system CONFIG REQUIRED) +find_package(fmt REQUIRED) +find_package(OpenGL REQUIRED COMPONENTS OpenGL GLX) + +file(GLOB_RECURSE sources CONFIGURE_DEPENDS "*.cpp") + +add_library(libpacman ${ sources }) + +target_include_directories(libpacman PUBLIC.) +target_link_libraries(libpacman PUBLIC fmt::fmt sfml - graphics sfml - window sfml - system OpenGL::OpenGL OpenGL::GLX)