2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 Openismus GmbH.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2011-11-29 14:19:28 +01:00
|
|
|
|
2016-02-03 17:21:12 +01:00
|
|
|
#pragma once
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
|
namespace AutotoolsProjectManager {
|
|
|
|
|
/**
|
|
|
|
|
* Collects project constants, that are shared between several classes.
|
|
|
|
|
*/
|
|
|
|
|
namespace Constants {
|
2019-06-26 12:48:53 +02:00
|
|
|
|
|
|
|
|
const char MAKEFILE_MIMETYPE[] = "text/x-makefile";
|
|
|
|
|
|
|
|
|
|
// Steps
|
|
|
|
|
const char AUTOGEN_STEP_ID[] = "AutotoolsProjectManager.AutogenStep";
|
|
|
|
|
const char AUTORECONF_STEP_ID[] = "AutotoolsProjectManager.AutoreconfStep";
|
|
|
|
|
const char CONFIGURE_STEP_ID[] = "AutotoolsProjectManager.ConfigureStep";
|
|
|
|
|
const char MAKE_STEP_ID[] = "AutotoolsProjectManager.MakeStep";
|
2011-11-29 14:19:28 +01:00
|
|
|
|
|
|
|
|
//Project
|
2019-06-26 12:48:53 +02:00
|
|
|
const char AUTOTOOLS_PROJECT_ID[] = "AutotoolsProjectManager.AutotoolsProject";
|
|
|
|
|
|
2011-11-29 14:19:28 +01:00
|
|
|
} // namespace Constants
|
|
|
|
|
} // namespace AutotoolsProjectManager
|