summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--.gitignore2
-rw-r--r--CMakeLists.txt4
2 files changed, 6 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index ba077a4..39e7499 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,3 @@
bin
+out
+.vs \ No newline at end of file
diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644
index 0000000..ce7a38a
--- /dev/null
+++ b/CMakeLists.txt
@@ -0,0 +1,4 @@
+cmake_minimum_required(VERSION 3.10)
+project(Brainfucked)
+AUX_SOURCE_DIRECTORY(src MyCSources)
+ADD_EXECUTABLE(Brainfucked ${MyCSources}) \ No newline at end of file