From 10f7b05a7330bf93ec4b1e9a0bcc6736a9dce80c Mon Sep 17 00:00:00 2001 From: sithlord48 Date: Wed, 23 Oct 2024 19:12:23 -0400 Subject: [PATCH] build(lib/client): Explicit Sources --- src/lib/client/CMakeLists.txt | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/lib/client/CMakeLists.txt b/src/lib/client/CMakeLists.txt index 7ea2b6480..d3d5d6a7e 100644 --- a/src/lib/client/CMakeLists.txt +++ b/src/lib/client/CMakeLists.txt @@ -1,4 +1,5 @@ # Deskflow -- mouse and keyboard sharing utility +# Copyright (C) 2024 Chris Rizzitello # Copyright (C) 2012-2024 Symless Ltd. # Copyright (C) 2009-2012 Nick Bolton # @@ -14,14 +15,14 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -file(GLOB headers "*.h") -file(GLOB sources "*.cpp") - -if(ADD_HEADERS_TO_SOURCES) - list(APPEND sources ${headers}) -endif() - -add_library(client STATIC ${sources}) +add_library(client STATIC + Client.cpp + Client.h + HelloBack.cpp + HelloBack.h + ServerProxy.cpp + ServerProxy.h +) if(UNIX) target_link_libraries(client app io)