Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
glow
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Glow
glow
Merge requests
!5
Check build type consistency.
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Check build type consistency.
glow_check_build_type_consistency
into
master
Overview
0
Commits
1
Pipelines
0
Changes
1
Merged
Kersten Schuster
requested to merge
glow_check_build_type_consistency
into
master
7 years ago
Overview
0
Commits
1
Pipelines
0
Changes
1
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
a4c38987
1 commit,
7 years ago
1 file
+
10
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
src/glow/glow.hh
+
10
−
0
Options
#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