From a0fa2b52bb469884c4b6780202cac39504d8e67d Mon Sep 17 00:00:00 2001 From: Patricia Aas Date: Thu, 1 Jul 2021 14:34:53 +0200 Subject: [PATCH] Simplify cmake --- src/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 81ac9ce..f67dfae 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,5 +1,4 @@ -file(GLOB_RECURSE sources CONFIGURE_DEPENDS "*.cpp") -add_executable(pacman ${sources}) +add_executable(pacman main.cpp) target_link_libraries(pacman PUBLIC libpacman) set_target_properties(pacman