diff options
author | Ryo Nakamura <upa@haeena.net> | 2023-08-03 17:07:39 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2023-08-03 17:07:39 +0900 |
commit | 9f7c135b1515ae297b839f54ea08c1fd16c9521e (patch) | |
tree | 74dc98867f35b76e458939f7846f9fa0c7625eff /CMakeLists.txt | |
parent | 8ab06c95319d4da360e3ca1c98876902736243b8 (diff) |
cleanup wrappers for file operations
Previously wrapper functions for open(), opendir(), and stat(), etc,
are implemneted in path.h, and now they are in fileops.h and fileops.c.
This commit is a reparation for remote glob.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ef1fbbc..b19e734 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -62,7 +62,7 @@ if(BUILD_CONAN) list(APPEND MSCP_LINK_LIBS OpenSSL::Crypto) endif() -set(LIBMSCP_SRC src/mscp.c src/ssh.c src/path.c src/platform.c src/message.c) +set(LIBMSCP_SRC src/mscp.c src/ssh.c src/fileops.c src/path.c src/platform.c src/message.c) # libmscp.so add_library(mscp-shared SHARED ${LIBMSCP_SRC}) |