mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
27cc0b539a
Any file which includes scmrev.h must be rebuilt when scmrev.h is regenerated. By not including scmrev.h from any file other than Version.cpp, incremental builds become a little faster.
20 lines
508 B
C++
20 lines
508 B
C++
// Copyright 2017 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace Common
|
|
{
|
|
// Git version number
|
|
extern const std::string scm_desc_str;
|
|
extern const std::string scm_branch_str;
|
|
extern const std::string scm_rev_str;
|
|
extern const std::string scm_rev_git_str;
|
|
extern const std::string scm_distributor_str;
|
|
extern const std::string scm_update_track_str;
|
|
extern const std::string netplay_dolphin_ver;
|
|
} // namespace Common
|