MEPP2 Project
mepp-gui.h
Go to the documentation of this file.
1 // Copyright (c) 2012-2019 University of Lyon and CNRS (France).
2 // All rights reserved.
3 //
4 // This file is part of MEPP2; you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published
6 // by the Free Software Foundation; either version 3 of the License,
7 // or (at your option) any later version.
8 //
9 // This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
10 // WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
11 #pragma once
12 
13 // -----------------------------------------------------------------------
14 #define MEPP_VERSION "v0.15.1 - 15/10/2022"
15 
16 #define MAINWINDOW_TITLE QObject::tr("MEPP2 : 3D MEsh Processing Platform")
17 
18 #if _WIN64 || __amd64__
19 #define PORTABLE_64_BIT
20 #define ARCHITECTURE QObject::tr("64 bits")
21 #else
22 #define PORTABLE_32_BIT
23 #define ARCHITECTURE QObject::tr("32 bits")
24 #endif
25 
26 #ifndef NDEBUG
27 #define BUILD_TYPE QObject::tr("DEBUG")
28 #else
29 #define BUILD_TYPE QObject::tr("RELEASE")
30 #endif
31 
32 #define MEPP_READER QObject::tr("USE MEPP GENERIC READER")
33 
34 //#ifndef CGAL_VERSION_STR
35 //#define CGAL_xstr(s) #s
36 //#define CGAL_str(s) CGAL_xstr(s)
37 //#define CGAL_VERSION_STR CGAL_str(CGAL_VERSION)
38 //#endif
39 
40 //#define ORGANIZATION QObject::tr("LIRIS")
41 //#define APPLICATION QObject::tr("MEPP2")
42 // -----------------------------------------------------------------------