Set up basic project

This commit is contained in:
Robert 2020-08-29 16:44:06 +02:00
parent 912b9bf318
commit 26a3775406
10 changed files with 5878 additions and 350 deletions

15
example/CMakeLists.txt Normal file
View file

@ -0,0 +1,15 @@
add_executable(example
"main.cpp"
)
target_include_directories(example PRIVATE
${CMAKE_SOURCE_DIR}/GLFramework/include
${OPENGL_INCLUDE_DIRS}
glfw
${CMAKE_SOURCE_DIR}/vendor/include
)
target_link_libraries(example
GLFramework
)