Removed build from VC

This commit is contained in:
Robert 2020-09-24 23:18:49 +02:00
commit 549544c2a9
3 changed files with 6 additions and 3 deletions

2
.gitignore vendored
View file

@ -1,4 +1,4 @@
.vs
out
*.json
build
*.json

View file

@ -28,8 +28,10 @@ target_include_directories(example PRIVATE
target_link_libraries(example
glfw
GL
${CMAKE_DL_LIBS}
)
add_custom_command(TARGET example POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_directory ${CMAKE_SOURCE_DIR}/assets $<TARGET_FILE_DIR:example>/assets
)
)

View file

@ -2,6 +2,7 @@
#include <iostream>
#include <fstream>
#include <cstring>
#include <glad/glad.h>
@ -28,7 +29,7 @@ void Shader::LoadShaderSource(const char* filepath, char** buffer)
return;
}
memcpy_s(*buffer, size, source.c_str(), size);
memcpy(*buffer, source.c_str(), size);
(*buffer)[size] = '\0';
}