Moved rendering files to rendering/
This commit is contained in:
parent
cedcba1835
commit
aaaa195167
|
@ -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)
|
|
@ -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);
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
#include "shader.h"
|
||||
#include "mesh.h"
|
||||
#include "defaultmeshes.h"
|
||||
#include "camera.h"
|
||||
#include "../camera.h"
|
||||
|
||||
#include "renderer.h"
|
||||
|
Loading…
Reference in a new issue