changed include names

This commit is contained in:
Lauchmelder 2021-12-23 00:45:24 +01:00
parent 3432865737
commit 8c789f57cb
6 changed files with 8 additions and 9 deletions

View file

@ -18,10 +18,7 @@ add_library(lol STATIC
"src/Transformable.cpp"
"src/Shader.cpp"
"src/VertexArrayObject.cpp"
)
target_sources(lol PUBLIC
vendor/glad/src/glad.c
"vendor/glad/src/glad.c"
)
target_include_directories(lol PUBLIC

View file

@ -4,4 +4,6 @@
#include <lol/Shader.hpp>
#include <lol/ObjectManager.hpp>
#include <lol/Drawable.hpp>
#include <lol/Transformable.hpp>
#include <lol/Transformable.hpp>
#include <lol/BoundingBox.hpp>
#include <lol/Camera.hpp>

View file

@ -1,4 +1,4 @@
#include "backend/Drawable.hpp"
#include <lol/Drawable.hpp>
void Drawable::Draw(const CameraBase& camera) const
{

View file

@ -1,4 +1,4 @@
#include "backend/Shader.hpp"
#include <lol/Shader.hpp>
#include <iostream>

View file

@ -1,4 +1,4 @@
#include "backend/Transformable.hpp"
#include <lol/Transformable.hpp>
Transformable::Transformable() :
position(0.0f), scale(1.0f), orientation(glm::vec3(0.0, 0.0, 0.0))

View file

@ -1,4 +1,4 @@
#include "backend/VertexArrayObject.hpp"
#include <lol/VertexArrayObject.hpp>
#include <assert.h>
#include <glad/glad.h>