From dda37c19134fa9bfb38d2231a9207e6e271798f8 Mon Sep 17 00:00:00 2001 From: CJSatnarine Date: Wed, 26 Feb 2025 15:58:08 -0500 Subject: [PATCH] more stuff --- .clangformat | 4 ++++ .gitignore | 2 ++ CMakeLists.txt | 6 ++++++ 3 files changed, 12 insertions(+) create mode 100644 .clangformat create mode 100644 .gitignore create mode 100644 CMakeLists.txt diff --git a/.clangformat b/.clangformat new file mode 100644 index 0000000..960bc8c --- /dev/null +++ b/.clangformat @@ -0,0 +1,4 @@ +BasedOnStyle: LLVM +IndentWidth: 4 +TabWidth: 4 +UseTab: Never diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..30e0c03 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/build +/.git diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..f4387ea --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.5.0) +project(tiny_renderer VERSION 0.1.0 LANGUAGES C CXX) + +add_executable(tiny_renderer + +)