init: first commit - rendering triangle

This commit is contained in:
2025-11-04 11:23:39 +01:00
commit a921fb27b1
4 changed files with 257 additions and 0 deletions

9
CMakeLists.txt Normal file
View File

@@ -0,0 +1,9 @@
cmake_minimum_required(VERSION 3.15)
project(SDFVisual VERSION 0.1
DESCRIPTION "CPU SDF Renderer"
LANGUAGES CXX)
set (CMAKE_CXX_STANDARD 20)
add_executable(one main.cpp)
target_link_libraries(one m)