From f42d99c5629140e58d234d5eb8f68be38b83d727 Mon Sep 17 00:00:00 2001 From: superp00t Date: Mon, 14 Aug 2023 17:58:15 -0400 Subject: [PATCH] fix(build): build new code structure --- bc/CMakeLists.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bc/CMakeLists.txt b/bc/CMakeLists.txt index 4ff3b2a..86e1c53 100644 --- a/bc/CMakeLists.txt +++ b/bc/CMakeLists.txt @@ -4,16 +4,16 @@ file(GLOB BC_SOURCES "os/*.cpp" "file/*.cpp" "time/*.cpp" - "file/system/*.cpp" - "time/system/*.cpp" + "system/*.cpp" + "system/file/*.cpp" ) if(DEFINED WHOA_SYSTEM_WIN) - file(GLOB BC_FILE_SYSTEM_SOURCES "file/system/win/*.cpp") + file(GLOB BC_FILE_SYSTEM_SOURCES "system/file/win/*.cpp") endif() if(DEFINED WHOA_SYSTEM_LINUX OR WHOA_SYSTEM_MAC) - file(GLOB BC_FILE_SYSTEM_SOURCES "file/system/posix/*.cpp") + file(GLOB BC_FILE_SYSTEM_SOURCES "system/file/posix/*.cpp") endif() list(APPEND BC_SOURCES ${BC_FILE_SYSTEM_SOURCES})