Skip to content

Commit

Permalink
prevent build of multi cam sender in Debug mode
Browse files Browse the repository at this point in the history
  • Loading branch information
Bvallon-sl committed Aug 30, 2024
1 parent c95d6c2 commit e15f3f0
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sender-multi-camera/src/GLViewer.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#include "GLViewer.hpp"

#if defined(_DEBUG) && defined(_WIN32)
#error "This sample should not be built in Debug mode, use RelWithDebInfo if you want to do step by step."
#endif

GLchar* VERTEX_SHADER =
"#version 330 core\n"
"layout(location = 0) in vec3 in_Vertex;\n"
Expand Down

0 comments on commit e15f3f0

Please sign in to comment.