Skip to content

Commit a543c82

Browse files
Update .gitignore to exclude build and vcpkg_installed directories; add project CMakeLists.txt to root directory to run cmake from root directory.
1 parent ab72e96 commit a543c82

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,5 @@ ebook/*.epub
1111

1212
convert.py
1313

14-
attachments/build/
14+
**/build/*
15+
**/vcpkg_installed/*

CMakeLists.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
cmake_minimum_required (VERSION 3.29)
2+
3+
project (VulkanTutorial)
4+
5+
add_subdirectory(attachments)

0 commit comments

Comments
 (0)