Add simple Vec3 header file

This commit is contained in:
Alex Selimov 2025-04-15 17:48:33 -04:00
parent 311a93cdd6
commit 24d7efc977
15 changed files with 321 additions and 137 deletions

10
include/CMakeLists.txt Normal file
View file

@ -0,0 +1,10 @@
project(${CMAKE_PROJECT_NAME}_lib)
set(HEADER_FILES
vec3.h
)
# The library contains header and source files.
add_library(${CMAKE_PROJECT_NAME}_lib
INTERFACE
)