source: s10k/XmlTools/utilglobalvars.h@ 1193

Last change on this file since 1193 was 1112, checked in by s10k, 5 years ago

Fix a deadlock, v2.0f

File size: 1.0 KB
Line 
1/*
2 *
3Copyright (C) 2017 Fábio Bento (random-guy)
4
5This program is free software: you can redistribute it and/or modify
6it under the terms of the GNU General Public License as published by
7the Free Software Foundation, either version 3 of the License, or
8(at your option) any later version.
9
10This program is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License
16along with this program. If not, see <http://www.gnu.org/licenses/>.
17*
18*/
19
20#ifndef UTILGLOBALVARS_H
21#define UTILGLOBALVARS_H
22
23namespace GlobalVars{
24
25static const QString AppName = "XmlTools";
26static const QString AppVersion = "2.0f";
27#ifdef Q_OS_WIN
28static const QString AppExecutable=AppName+".exe";
29#else
30static const QString AppExecutable="./"+AppName; // Mac OS needs unix like executing
31#endif
32
33}
34
35#endif // UTILGLOBALVARS_H
Note: See TracBrowser for help on using the repository browser.