aseprite/src/config.h

43 lines
1.2 KiB
C
Raw Normal View History

2015-02-12 12:16:25 -03:00
// Aseprite
2016-02-23 16:10:54 -03:00
// Copyright (C) 2001-2016 David Capello
2015-02-12 12:16:25 -03:00
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation.
2007-09-18 23:57:02 +00:00
#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
#ifndef _CRT_SECURE_NO_WARNINGS
#define _CRT_SECURE_NO_WARNINGS
#endif
// 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
2015-08-31 13:27:40 -03:00
#define PACKAGE "Aseprite"
2016-02-29 22:11:00 -03:00
#define VERSION "1.1.3-dev"
2015-08-31 13:27:40 -03:00
#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/"
2015-03-02 19:54:24 -03:00
#define WEBSITE_NEWS_RSS "http://blog.aseprite.org/rss"
#define UPDATE_URL WEBSITE "update/?xml=1"
2016-02-23 16:10:54 -03:00
#define COPYRIGHT "Copyright (C) 2001-2016 David Capello"
2007-09-18 23:57:02 +00:00
#include "base/base.h"
2014-09-20 23:51:56 -03:00
#include "base/debug.h"
#include "base/log.h"