From bed25774d744ee90ffea0240c3c36ca604ae0c02 Mon Sep 17 00:00:00 2001 From: i0gan Date: Sat, 21 Sep 2024 16:44:53 +0800 Subject: [PATCH] Update CMakeLists.txt --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index b5cb0793..1f5f6248 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -161,6 +161,7 @@ set(ProjectName "startup") file(GLOB soruces src/*.cc) file(GLOB headers src/*.h) file(GLOB_RECURSE proto ./src/proto/*.proto) +file(GLOB_RECURSE pycli ./src/pycli/*.py) file(GLOB_RECURSE lua ./src/lua/*.lua) file(GLOB_RECURSE plugin ./config//plugin/*.xml) file(GLOB_RECURSE config ./config/node/*.json) @@ -169,6 +170,7 @@ source_group_by_dir(proto) source_group_by_dir(lua) source_group_by_dir(plugin) source_group_by_dir(config) +source_group_by_dir(pycli) add_executable(${ProjectName} ${soruces} ${headers} ${proto} ${lua} ${plugin} ${config})