Browse Source

Created File Structure, Added .gitignore

angel 7 years ago
parent
commit
14b13a5e94
3 changed files with 7 additions and 0 deletions
  1. 1 0
      .gitignore
  2. 6 0
      CMakeLists.txt
  3. 0 0
      src/main.cpp

+ 1 - 0
.gitignore

@@ -0,0 +1 @@
+builds/

+ 6 - 0
CMakeLists.txt

@@ -0,0 +1,6 @@
+cmake_minimum_required(VERSION 3.1)
+project(softwareRenderer)
+
+add_executable(softwareDemo src/main.cpp)
+
+

+ 0 - 0
main.cpp → src/main.cpp