-
Notifications
You must be signed in to change notification settings - Fork 1
/
autodetect.h.in
75 lines (58 loc) · 2.79 KB
/
autodetect.h.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// © Copyright 2010 - 2021 BlackTopp Studios Inc.
/* This file is part of The Mezzanine Engine.
The Mezzanine Engine is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
The Mezzanine Engine is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with The Mezzanine Engine. If not, see <http://www.gnu.org/licenses/>.
*/
/* The original authors have included a copy of the license specified above in the
'Docs' folder. See 'gpl.txt'
*/
/* We welcome the use of the Mezzanine engine to anyone, including companies who wish to
Build professional software and charge for their product.
However there are some practical restrictions, so if your project involves
any of the following you should contact us and we will try to work something
out:
- DRM or Copy Protection of any kind(except Copyrights)
- Software Patents You Do Not Wish to Freely License
- Any Kind of Linking to Non-GPL licensed Works
- Are Currently In Violation of Another Copyright Holder's GPL License
- If You want to change our code and not add a few hundred MB of stuff to
your distribution
These and other limitations could cause serious legal problems if you ignore
them, so it is best to simply contact us or the Free Software Foundation, if
you have any questions.
Joseph Toppi - toppij@gmail.com
John Blackwood - makoenergy02@gmail.com
*/
#ifndef _autodetect_h
#define _autodetect_h
/// @brief This has a list of the tests and instatiates them
/// @details This file is automatically generated, don't change it if you don't know what you are doing.
/// Modify autodetect.h.in to make changes to this
#include <map>
#include "mezztest.h"
// Automatically Generated directory for filesystem tests
const Mezzanine::String TestingScratchDir("${TestingScratchDir}");
// End Automatically Generated directory for filesystem tests
// Automatically generated test inclusion ${CppIncludes}
// End Automatically generated test inclusion
// Automatically generated test instantiation ${CppInstantiations}
// End Automatically generated test instantiation
/// @brief The list of all the testgroups
class GlobalCoreTestGroup : public CoreTestGroup
{
public:
GlobalCoreTestGroup()
{
// Automatically generated test registration ${CppNameRegistration}
// End Automatically generated test registration
}
};
#endif