Skip to content

Instantly share code, notes, and snippets.

View KRMisha's full-sized avatar

Misha Krieger-Raynauld KRMisha

View GitHub Profile
@KRMisha
KRMisha / .gitignore.patch
Created October 27, 2024 23:21
How to set up tests in a Makefile (https://github.com/KRMisha/Makefile) using Catch2 with Conan
diff --git a/.gitignore b/.gitignore
index 542fa54..2a5e664 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,9 @@
.DS_Store
Thumbs.db
+# Python virtual environment for Conan
+.venv/
@KRMisha
KRMisha / .gitignore.patch
Last active October 27, 2024 23:58
How to integrate vcpkg into a Makefile (https://github.com/KRMisha/Makefile) for SFML
diff --git a/.gitignore b/.gitignore
index 542fa54..2f1f509 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,9 @@
.DS_Store
Thumbs.db
+# vcpkg
+/vcpkg_installed/
@KRMisha
KRMisha / .gitignore.patch
Last active October 27, 2024 23:44
How to integrate Conan into a Makefile (https://github.com/KRMisha/Makefile) for SFML
diff --git a/.gitignore b/.gitignore
index 542fa54..2a5e664 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,9 @@
.DS_Store
Thumbs.db
+# Python virtual environment for Conan
+.venv/