From 68cfb11b3a7eae2a1b6b282af96427a1cc7c2cfe Mon Sep 17 00:00:00 2001 From: xx Date: Mon, 3 Jun 2024 23:43:14 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8DBUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CMakeLists.txt | 1 - src/module/sys.cpp | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3f1f1d8..d555083 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -102,7 +102,6 @@ if(MSVC) $<$:${PROJECT_SOURCE_DIR}/3rdparty/mysql/lib/Release/mysqlcppconn.lib> $<$:${YLIB}/lib/leveldb.lib> $<$:${YLIB}/lib/libzip.lib> - $<$:${YLIB}/lib/lua.lib> $<$:${YLIB}/lib/sqlite3.lib> $<$:${YLIB}/lib/ylib.lib> $<$:${YLIB}/lib/zlib.lib> diff --git a/src/module/sys.cpp b/src/module/sys.cpp index edb89c9..d4b9779 100644 --- a/src/module/sys.cpp +++ b/src/module/sys.cpp @@ -47,6 +47,6 @@ void module::sys::regist(sol::state* lua) "temp_path", &module::sys::temp_path, "desktop_path", &module::sys::desktop_path, "currentuser_path", &module::sys::currentuser_path, - "mac", &module::sys::mac, + "mac", &module::sys::mac ); }