Skip to content
Snippets Groups Projects
Commit 98fe9594 authored by Sebastian Gaida's avatar Sebastian Gaida
Browse files

[#87] remove useless header

parent 9f2a390b
No related branches found
No related tags found
1 merge request!74Resolve "Mesh Shader Implementation"
......@@ -11,8 +11,7 @@ set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
# adding source files to the project
add_executable(mesh_shader src/main.cpp)
target_sources(mesh_shader PRIVATE
src/MeshStruct.hpp)
target_sources(mesh_shader PRIVATE)
# this should fix the execution path to load local files from the project (for MSVC)
if(MSVC)
......
#pragma once
#include <glm/glm.hpp>
struct MeshStruct{
glm::vec3 position;
glm::vec3 index;
};
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment