From 0e9dbb408e1fd650580eacaf7ca73a067358fd11 Mon Sep 17 00:00:00 2001 From: dnomd343 Date: Sun, 4 Sep 2022 18:15:03 +0800 Subject: [PATCH] fix: cmake configure error --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 5aa80c3..788bcae 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -8,5 +8,5 @@ add_subdirectory(utils) add_executable(ss-bootstrap-local local.c common.c load.c sip003.c) target_link_libraries(ss-bootstrap-local utils pthread) -add_executable(ss-bootstrap-server local.c common.c load.c sip003.c) +add_executable(ss-bootstrap-server server.c common.c load.c sip003.c) target_link_libraries(ss-bootstrap-server utils pthread)