From 09b69376659ec8b9deedf97c4686e22b70999ca5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BD=D1=82=D0=BE=D0=BD?= Date: Sat, 16 Mar 2024 13:06:39 +0300 Subject: [PATCH] delete unnecessary --- CMakeLists.txt | 2 +- main.cpp | 2 +- src/sdk.h | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 src/sdk.h diff --git a/CMakeLists.txt b/CMakeLists.txt index db97e3f..1f35b69 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,5 +23,5 @@ configure_file(config.json ${CMAKE_BUILD_RPATH} config.json COPYONLY) add_executable(hello_async main.cpp -) + src/sdk.h) target_link_libraries(hello_async PRIVATE Threads::Threads) diff --git a/main.cpp b/main.cpp index bb8118c..7dd4c5d 100644 --- a/main.cpp +++ b/main.cpp @@ -8,5 +8,5 @@ int main() { - return EXIT_SUCCESS + return EXIT_SUCCESS; } diff --git a/src/sdk.h b/src/sdk.h new file mode 100644 index 0000000..c1ac92b --- /dev/null +++ b/src/sdk.h @@ -0,0 +1,4 @@ +#pragma once +#ifdef WIN32 +#include +#endif