fixed engines order, added svn:keywords properties.

svn-id: r43925
This commit is contained in:
Vladimir Menshakov 2009-09-03 21:20:13 +00:00
parent e50631bee3
commit 3c8cdcae2f
31 changed files with 65 additions and 64 deletions

View file

@ -148,6 +148,9 @@ public:
#if PLUGIN_ENABLED_STATIC(SWORD2)
LINK_PLUGIN(SWORD2)
#endif
#if PLUGIN_ENABLED_STATIC(TEENAGENT)
LINK_PLUGIN(TEENAGENT)
#endif
#if PLUGIN_ENABLED_STATIC(TINSEL)
LINK_PLUGIN(TINSEL)
#endif
@ -157,9 +160,6 @@ public:
#if PLUGIN_ENABLED_STATIC(TUCKER)
LINK_PLUGIN(TUCKER)
#endif
#if PLUGIN_ENABLED_STATIC(TEENAGENT)
LINK_PLUGIN(TEENAGENT)
#endif
// Music plugins
// TODO: Use defines to disable or enable each MIDI driver as a

2
configure vendored
View file

@ -102,10 +102,10 @@ add_engine sci32 "SCI32 games" no
add_engine sky "Beneath a Steel Sky" yes
add_engine sword1 "Broken Sword 1" yes
add_engine sword2 "Broken Sword 2" yes
add_engine teenagent "Teen Agent" no
add_engine tinsel "Tinsel" yes
add_engine touche "Touche: The Adventures of the Fifth Musketeer" yes
add_engine tucker "Bud Tucker in Double Trouble" yes
add_engine teenagent "Teen Agent" no
#

View file

@ -131,6 +131,11 @@ DEFINES += -DENABLE_SWORD2=$(ENABLE_SWORD2)
MODULES += engines/sword2
endif
ifdef ENABLE_TEENAGENT
DEFINES += -DENABLE_TEENAGENT=$(ENABLE_TEENAGENT)
MODULES += engines/teenagent
endif
ifdef ENABLE_TINSEL
DEFINES += -DENABLE_TINSEL=$(ENABLE_TINSEL)
MODULES += engines/tinsel
@ -146,7 +151,3 @@ DEFINES += -DENABLE_TUCKER=$(ENABLE_TUCKER)
MODULES += engines/tucker
endif
ifdef ENABLE_TEENAGENT
DEFINES += -DENABLE_TEENAGENT=$(ENABLE_TEENAGENT)
MODULES += engines/teenagent
endif

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/actor.cpp $
* $Id: objects.h 172 2009-08-11 08:06:58Z megath $
* $URL$
* $Id$
*/
#include "actor.h"
#include "objects.h"

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/objects.h $
* $Id: objects.h 172 2009-08-11 08:06:58Z megath $
* $URL$
* $Id$
*/
#include "animation.h"

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/animation.cpp $
* $Id: animation.cpp 296 2009-09-01 19:55:58Z megath $
* $URL$
* $Id$
*/

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/animation.h $
* $Id: animation.h 214 2009-08-14 06:09:26Z megath $
* $URL$
* $Id$
*/

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/objects.h $
* $Id: objects.h 172 2009-08-11 08:06:58Z megath $
* $URL$
* $Id$
*/
#include "scene.h"

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/detection.cpp $
* $Id: detection.cpp 215 2009-08-14 07:11:27Z megath $
* $URL$
* $Id$
*/

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/objects.h $
* $Id: objects.h 172 2009-08-11 08:06:58Z megath $
* $URL$
* $Id$
*/
#include "dialog.h"

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/objects.h $
* $Id: objects.h 172 2009-08-11 08:06:58Z megath $
* $URL$
* $Id$
*/
#ifndef TEENAGENT_DIALOG_H__

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/font.cpp $
* $Id: font.cpp 242 2009-08-15 11:44:27Z megath $
* $URL$
* $Id$
*/

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/font.h $
* $Id: font.h 173 2009-08-11 08:10:22Z megath $
* $URL$
* $Id$
*/
#ifndef TEENAGENT_FONT_H__

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/objects.h $
* $Id: objects.h 172 2009-08-11 08:06:58Z megath $
* $URL$
* $Id$
*/
#include "inventory.h"

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/objects.h $
* $Id: objects.h 172 2009-08-11 08:06:58Z megath $
* $URL$
* $Id$
*/
#ifndef TEENAGENT_INVENTORY_H__

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/old_engine/music.cpp $
* $Id: music.cpp 121 2009-08-02 20:04:53Z megath $
* $URL$
* $Id$
*
*/

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/old_engine/music.h $
* $Id: music.h 121 2009-08-02 20:04:53Z megath $
* $URL$
* $Id$
*
*/

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/objects.h $
* $Id: objects.h 172 2009-08-11 08:06:58Z megath $
* $URL$
* $Id$
*/
#include "objects.h"

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/objects.h $
* $Id: objects.h 282 2009-08-30 22:12:01Z megath $
* $URL$
* $Id$
*/

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/pack.cpp $
* $Id: pack.cpp 182 2009-08-11 21:16:14Z megath $
* $URL$
* $Id$
*/

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/pack.h $
* $Id: pack.h 182 2009-08-11 21:16:14Z megath $
* $URL$
* $Id$
*/

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/resources.cpp $
* $Id: resources.cpp 274 2009-08-25 21:04:54Z megath $
* $URL$
* $Id$
*/
#include "resources.h"

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/resources.h $
* $Id: resources.h 260 2009-08-19 07:29:19Z megath $
* $URL$
* $Id$
*/

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/scene.cpp $
* $Id: scene.cpp 303 2009-09-03 20:09:57Z megath $
* $URL$
* $Id$
*/

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/scene.h $
* $Id: scene.h 296 2009-09-01 19:55:58Z megath $
* $URL$
* $Id$
*/

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/segment.cpp $
* $Id: segment.cpp 188 2009-08-12 07:22:11Z megath $
* $URL$
* $Id$
*/

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/segment.h $
* $Id: segment.h 188 2009-08-12 07:22:11Z megath $
* $URL$
* $Id$
*/

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/surface.cpp $
* $Id: surface.cpp 214 2009-08-14 06:09:26Z megath $
* $URL$
* $Id$
*/

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/surface.h $
* $Id: surface.h 154 2009-08-10 20:10:23Z megath $
* $URL$
* $Id$
*/

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/tagent.cpp $
* $Id: tagent.cpp 304 2009-09-03 20:10:22Z megath $
* $URL$
* $Id$
*/

View file

@ -18,8 +18,8 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* $URL: https://www.switchlink.se/svn/teen/tagent.h $
* $Id: tagent.h 304 2009-09-03 20:10:22Z megath $
* $URL$
* $Id$
*/