diff --git a/.gitignore b/.gitignore index 25a7384..293647e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ *.o *.exe +/.vs +/out diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..80951b7 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,14 @@ + +cmake_minimum_required(VERSION 3.20) + +project(borderless-window + VERSION 1.0 + LANGUAGES C +) + +add_executable(${PROJECT_NAME} WIN32 borderless-window.c) + +target_link_libraries(${PROJECT_NAME} PRIVATE + UxTheme.lib + Dwmapi.lib +) \ No newline at end of file