Moved rendering files to rendering/

This commit is contained in:
maelstrom 2024-09-27 22:48:57 +02:00
parent cedcba1835
commit aaaa195167
12 changed files with 3 additions and 3 deletions

View file

@ -27,7 +27,7 @@ find_package(assimp REQUIRED)
file(MAKE_DIRECTORY bin)
file(GLOB SOURCES "src/*.cpp" "src/*.h")
file(GLOB_RECURSE SOURCES "src/*.cpp" "src/*.h")
add_executable(${PROJECT_NAME} ${SOURCES})
set_target_properties(${PROJECT_NAME} PROPERTIES OUTPUT_NAME "gltest")
target_link_libraries(${PROJECT_NAME} ${SDL2_LIBRARIES} ${GLEW_LIBRARIES} ${GLUT_LIBRARIES} OpenGL::GL OpenGL::GLU glfw glm::glm assimp)

View file

@ -3,7 +3,7 @@
#include <GLFW/glfw3.h>
#include <stdio.h>
#include "renderer.h"
#include "rendering/renderer.h"
#include "camera.h"
void errorCatcher(int id, const char* str);

View file

@ -7,7 +7,7 @@
#include "shader.h"
#include "mesh.h"
#include "defaultmeshes.h"
#include "camera.h"
#include "../camera.h"
#include "renderer.h"