aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkg_GlobalState.cpp
blob: 2221222c00a6208a789c1db4918322304155c1f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "pch.h"

#include "vcpkg_GlobalState.h"

namespace vcpkg
{
    Util::LockGuarded<ElapsedTime> GlobalState::timer;
    std::atomic<bool> GlobalState::debugging = false;
    std::atomic<bool> GlobalState::feature_packages = false;

    std::atomic<int> GlobalState::g_init_console_cp = 0;
    std::atomic<int> GlobalState::g_init_console_output_cp = 0;
}