ROLAND  0.70
Amstrad Emulator based on Caprice Source rewritten in C++.
config.h
Go to the documentation of this file.
1 /***************************************************************************
2  * Copyright (C) by Fred Klaus *
3  * development@fkweb.de *
4  * *
5  * This program is free software; you can redistribute it and/or modify *
6  * it under the terms of the GNU General Public License as published by *
7  * the Free Software Foundation; either version 2 of the License, or *
8  * (at your option) any later version. *
9  * *
10  * This program is distributed in the hope that it will be useful, *
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13  * GNU General Public License for more details. *
14  * *
15  * You should have received a copy of the GNU General Public License *
16  * along with this program; if not, write to the *
17  * Free Software Foundation, Inc., *
18  * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19  ***************************************************************************/
21 #ifndef ROLAND_CONFIG_H
22 #define ROLAND_CONFIG_H
23 
25 /* #undef DEBUG */
26 /* #undef NDEBUG */
27 /* #undef VERBOSE */
28 
29 
31 static const auto PACKAGE_BUGREPORT = "development@fkweb.de";
32 
34 static const auto PACKAGE_NAME = "roland";
35 
37 static const auto PACKAGE_STRING = "ROLAND 0.70 Release";
38 
40 static const auto PACKAGE_TARNAME = "roland";
41 
43 static const auto PACKAGE_VERSION = "0.70";
44 
46 static const auto DATADIR = "/usr/share/roland/";
47 static const auto ROMDIR = "/usr/share/roland/roms/";
48 static const auto DISKDIR = "/usr/share/roland/disks/";
49 static const auto AMSROM = "/usr/share/roland/roms/amsdos.rom";
50 static const auto CPCROM = "/usr/share/roland/roms/cpc6128.rom";
51 
54 
57 
58 #endif // ROLAND_CONFIG_H
static const auto PACKAGE_NAME
Define to the full name of this package.
Definition: config.h:34
static const auto CPCROM
Definition: config.h:50
static const auto PACKAGE_STRING
Define to the full name and version of this package.
Definition: config.h:37
static const auto PACKAGE_BUGREPORT
config.h. Generated from config.h.in by CMake.
Definition: config.h:31
static const auto AMSROM
Definition: config.h:49
static const auto DISKDIR
Definition: config.h:48
static const auto DATADIR
Data directories */.
Definition: config.h:46
static const auto ROMDIR
Definition: config.h:47
static const auto PACKAGE_VERSION
Define to the version of this package.
Definition: config.h:43
static const auto PACKAGE_TARNAME
Define to the one symbol short name of this package.
Definition: config.h:40