From e2db2cf847279ff8c1934ea182e3c1e01862734e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D1=82=D0=BE=D0=BD?= Date: Fri, 22 Mar 2024 17:21:12 +0300 Subject: [PATCH] create static files folder --- CMakeLists.txt | 1 + public/MyFile1.txt | 1 + 2 files changed, 2 insertions(+) create mode 100644 public/MyFile1.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index 0a0a40e..2525e9b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -17,6 +17,7 @@ set(THREADS_PREFER_PTHREAD_FLAG ON) find_package(Threads REQUIRED) configure_file(config.json ${CMAKE_BUILD_RPATH} config.json COPYONLY) +file(COPY public DESTINATION ${CMAKE_BINARY_DIR}) add_executable(hello_async main.cpp diff --git a/public/MyFile1.txt b/public/MyFile1.txt new file mode 100644 index 0000000..d8f9a8c --- /dev/null +++ b/public/MyFile1.txt @@ -0,0 +1 @@ +Это просто мой файл \ No newline at end of file