Skip to content
Snippets Groups Projects

Check build type consistency.

Merged Kersten Schuster requested to merge glow_check_build_type_consistency into master
1 file
+ 10
0
Compare changes
  • Side-by-side
  • Inline
+ 10
0
#pragma once
#ifdef _DEBUG
#ifndef GLOW_DEBUG
#error Visual Studio is set to debug but CMake is not. Settings must match.
#endif
#else
#ifdef GLOW_DEBUG
#error CMake is set to debug but Visual Studio is not. Settings must match.
#endif
#endif
namespace glow
{
/// OpenGL Version information
Loading