pacman/lib/CMakeLists.txt

10 lines
316 B
CMake
Raw Normal View History

2021-06-22 07:43:00 +00:00
find_package(SFML COMPONENTS COMPONENTS window graphics system CONFIG REQUIRED)
find_package(fmt REQUIRED)
file(GLOB_RECURSE sources CONFIGURE_DEPENDS "*.cpp")
2021-06-22 07:45:19 +00:00
add_library(libpacman ${sources})
2021-06-22 07:43:00 +00:00
2021-06-22 07:45:19 +00:00
target_include_directories(libpacman PUBLIC .)
target_link_libraries(libpacman PUBLIC fmt::fmt sfml-graphics)