restructured project to encapsulate backend into library

This commit is contained in:
Lauchmelder 2021-12-21 15:51:54 +01:00
parent 01f5a26aa6
commit 19cae22aba
12 changed files with 29 additions and 11 deletions

View file

@ -26,4 +26,5 @@ if(NOT GLM_FOUND)
endif()
# Include sub-projects.
add_subdirectory("backend")
add_subdirectory ("src")

20
backend/CMakeLists.txt Normal file
View file

@ -0,0 +1,20 @@
add_library(backend STATIC
"src/Drawable.cpp"
"src/Transformable.cpp"
"src/Shader.cpp"
"src/VertexArrayObject.cpp"
)
target_sources(backend PUBLIC
${VENDOR_DIR}/glad/src/glad.c
)
target_include_directories(backend PUBLIC
${GLM_INCLUDE_DIRS}
${VENDOR_DIR}/glad/include
include
)
target_link_libraries(backend PUBLIC
${GLM_LIBRARIES}
)

View file

@ -1,4 +1,4 @@
#include "Drawable.hpp"
#include "backend/Drawable.hpp"
void Drawable::Render()
{

View file

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

View file

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

View file

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

View file

@ -1,10 +1,8 @@
add_executable(visualizer
"main.cpp" "Application.cpp"
"backend/VertexArrayObject.cpp" "backend/Shader.cpp" "Cuboid.cpp" "backend/Drawable.cpp" "backend/Transformable.cpp")
"main.cpp" "Application.cpp" "Cuboid.cpp"
)
target_sources(visualizer PUBLIC
${VENDOR_DIR}/glad/src/glad.c
${VENDOR_DIR}/imgui/backends/imgui_impl_opengl3.cpp
${VENDOR_DIR}/imgui/backends/imgui_impl_glfw.cpp
${VENDOR_DIR}/imgui/imgui.cpp
@ -16,12 +14,11 @@ target_sources(visualizer PUBLIC
target_include_directories(visualizer PRIVATE
${GLFW3_INCLUDE_DIRS}
${GLM_INCLUDE_DIRS}
${VENDOR_DIR}/glad/include
${VENDOR_DIR}/imgui
backend
)
target_link_libraries(visualizer PRIVATE
${GLFW3_LIBRARIES}
${GLM_LIBRARIES}
backend
)