mirror of
https://github.com/overte-org/overte.git
synced 2025-04-15 01:27:20 +02:00
29 lines
1 KiB
C
29 lines
1 KiB
C
//
|
|
// BuildInfo.h.in
|
|
// cmake/templates
|
|
//
|
|
// Created by Stephen Birarda on 1/14/16.
|
|
// Copyright 2015 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#define USE_STABLE_GLOBAL_SERVICES @USE_STABLE_GLOBAL_SERVICES@
|
|
|
|
#include <QString>
|
|
|
|
namespace BuildInfo {
|
|
// WARNING: This file has been auto-generated.
|
|
// Check cmake/templates/BuildInfo.h.in if you want to modify it.
|
|
|
|
const QString INTERFACE_NAME = "Interface";
|
|
const QString ASSIGNMENT_CLIENT_NAME = "assignment-client";
|
|
const QString DOMAIN_SERVER_NAME = "domain-server";
|
|
const QString AC_CLIENT_SERVER_NAME = "ac-client";
|
|
const QString MODIFIED_ORGANIZATION = "@BUILD_ORGANIZATION@";
|
|
const QString ORGANIZATION_DOMAIN = "highfidelity.io";
|
|
const QString VERSION = "@BUILD_VERSION@";
|
|
const QString BUILD_BRANCH = "@BUILD_BRANCH@";
|
|
const QString BUILD_GLOBAL_SERVICES = "@BUILD_GLOBAL_SERVICES@";
|
|
}
|