diff options
author | Robert White <rjwhitenh@outlook.com> | 2023-04-13 20:44:55 -0400 |
---|---|---|
committer | Robert White <rjwhitenh@outlook.com> | 2023-04-13 20:44:55 -0400 |
commit | 59b71f85e9107088d81677d8730e0fdce4a22ed5 (patch) | |
tree | 5008ffdef0b042e63844fd4ecbbc2a9798ca9936 | |
parent | fix the thing with the thing (diff) | |
download | brainfucked-59b71f85e9107088d81677d8730e0fdce4a22ed5.tar.gz brainfucked-59b71f85e9107088d81677d8730e0fdce4a22ed5.tar.bz2 brainfucked-59b71f85e9107088d81677d8730e0fdce4a22ed5.zip |
Added cmakelists lol
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | CMakeLists.txt | 4 |
2 files changed, 6 insertions, 0 deletions
@@ -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 |