aseprite/src/config.h

54 lines
1.8 KiB
C
Raw Normal View History

2014-02-08 00:56:20 -03:00
/* Aseprite
* Copyright (C) 2001-2015 David Capello
2007-09-18 23:57:02 +00:00
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#ifdef __ASE_CONFIG_H
2010-04-22 19:00:22 -03:00
#error You cannot use config.h two times
2007-09-18 23:57:02 +00:00
#endif
#define __ASE_CONFIG_H
// In MSVC
#ifdef _MSC_VER
// Avoid warnings about insecure standard C++ functions
#define _CRT_SECURE_NO_WARNINGS
// Disable warning C4355 in MSVC: 'this' used in base member initializer list
#pragma warning(disable:4355)
#endif
2007-09-18 23:57:02 +00:00
2010-04-22 19:00:22 -03:00
// General information
2013-09-30 19:57:16 -03:00
#define PACKAGE "Aseprite"
2014-11-12 23:20:43 -03:00
#define VERSION "1.1.0-dev"
#ifdef CUSTOM_WEBSITE_URL
#define WEBSITE CUSTOM_WEBSITE_URL // To test web server
#else
#define WEBSITE "http://www.aseprite.org/"
#endif
#define WEBSITE_DOWNLOAD WEBSITE "download/"
2014-04-12 12:28:34 -03:00
#define WEBSITE_CONTRIBUTORS WEBSITE "contributors/"
#define UPDATE_URL WEBSITE "update/?xml=1"
2015-01-25 19:51:59 -03:00
#define COPYRIGHT "Copyright (C) 2001-2015 David Capello"
2007-09-18 23:57:02 +00:00
#define PRINTF verbose_printf
2007-09-18 23:57:02 +00:00
// verbose_printf is defined in src/app/log.cpp and used through PRINTF macro
2010-04-22 19:00:22 -03:00
void verbose_printf(const char* format, ...);
2007-09-18 23:57:02 +00:00
#include "base/base.h"
2014-09-20 23:51:56 -03:00
#include "base/debug.h"