From 2e7df9ca006907b3c9d8eeb1a564ccf65836f933 Mon Sep 17 00:00:00 2001 From: fumiama Date: Tue, 18 May 2021 20:36:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84cmake?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index b7c5124..2eea6eb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,6 +9,9 @@ endif() add_definitions(-DLISTEN_ON_IPV6) +include_directories("/usr/local/include") +link_directories("/usr/local/lib") + add_executable(simple-kanban server.c) add_executable(simple-kanban-client client.c) add_executable(cfgwriter cfgwriter.c)