624
by cecilios
Initial update for v5.0 first working core using lomse |
1 |
//--------------------------------------------------------------------------------------
|
2 |
// This file is part of LenMus project. |
|
3 |
// Copyright (c) 2002-2011 Cecilio Salmeron |
|
4 |
//
|
|
5 |
// LenMus is free software; you can redistribute it and/or modify it under the |
|
6 |
// terms of the GNU General Public License as published by the Free Software Foundation, |
|
7 |
// either version 3 of the License, or (at your option) any later version. |
|
8 |
//
|
|
9 |
// langtool is distributed in the hope that it will be useful, but WITHOUT ANY |
|
10 |
// WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A |
|
11 |
// PARTICULAR PURPOSE. See the GNU General Public License for more details. |
|
12 |
//
|
|
13 |
// You should have received a copy of the GNU General Public License along |
|
14 |
// with langtool; if not, see <http://www.gnu.org/licenses/>. |
|
15 |
//
|
|
16 |
// For any comment, suggestion or feature request, please contact the manager of |
|
17 |
// the project at cecilios@users.sourceforge.net |
|
18 |
//
|
|
19 |
//-------------------------------------------------------------------------------------
|
|
20 |
||
21 |
#ifndef __LANGTOOL_CONFIG_H__
|
|
22 |
#define __LANGTOOL_CONFIG_H__
|
|
23 |
||
24 |
//==================================================================
|
|
25 |
// Template configuration file. |
|
26 |
// Variables are replaced by CMake settings |
|
27 |
//==================================================================
|
|
28 |
||
29 |
||
30 |
//---------------------------------------------------------------------------------------
|
|
31 |
// platform and compiler |
|
32 |
//---------------------------------------------------------------------------------------
|
|
33 |
#define LANGTOOL_PLATFORM_WIN32 @LANGTOOL_PLATFORM_WIN32@
|
|
34 |
#define LANGTOOL_PLATFORM_UNIX @LANGTOOL_PLATFORM_UNIX@
|
|
35 |
#define LANGTOOL_COMPILER_MSVC @LANGTOOL_COMPILER_MSVC@
|
|
36 |
#define LANGTOOL_COMPILER_GCC @LANGTOOL_COMPILER_GCC@
|
|
37 |
||
38 |
||
39 |
#endif // __LANGTOOL_CONFIG_H__
|
|
40 |