initial commit

This commit is contained in:
Lauchmelder 2022-10-16 14:13:13 +02:00
commit be1abc3762
16 changed files with 11692 additions and 0 deletions

12
CMakeLists.txt Normal file
View file

@ -0,0 +1,12 @@
# CMakeList.txt : Top-level CMake project file, do global configuration
# and include sub-projects here.
#
cmake_minimum_required (VERSION 3.8)
project ("schroedinger-solver")
add_subdirectory("vendor/glfw")
add_subdirectory("vendor/glad")
# Include sub-projects.
add_subdirectory ("src")