mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-14 19:31:37 +08:00
14 lines
362 B
C++
14 lines
362 B
C++
#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;
|
|
}
|