vcpkg/toolsrc/src/vcpkg_GlobalState.cpp

11 lines
240 B
C++
Raw Normal View History

2017-08-24 07:17:53 +08:00
#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;
2017-08-24 07:17:53 +08:00
}