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) #if PLUGIN_ENABLED_STATIC(SWORD2)
LINK_PLUGIN(SWORD2) LINK_PLUGIN(SWORD2)
#endif #endif
#if PLUGIN_ENABLED_STATIC(TEENAGENT)
LINK_PLUGIN(TEENAGENT)
#endif
#if PLUGIN_ENABLED_STATIC(TINSEL) #if PLUGIN_ENABLED_STATIC(TINSEL)
LINK_PLUGIN(TINSEL) LINK_PLUGIN(TINSEL)
#endif #endif
@ -157,9 +160,6 @@ public:
#if PLUGIN_ENABLED_STATIC(TUCKER) #if PLUGIN_ENABLED_STATIC(TUCKER)
LINK_PLUGIN(TUCKER) LINK_PLUGIN(TUCKER)
#endif #endif
#if PLUGIN_ENABLED_STATIC(TEENAGENT)
LINK_PLUGIN(TEENAGENT)
#endif
// Music plugins // Music plugins
// TODO: Use defines to disable or enable each MIDI driver as a // 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 sky "Beneath a Steel Sky" yes
add_engine sword1 "Broken Sword 1" yes add_engine sword1 "Broken Sword 1" yes
add_engine sword2 "Broken Sword 2" yes add_engine sword2 "Broken Sword 2" yes
add_engine teenagent "Teen Agent" no
add_engine tinsel "Tinsel" yes add_engine tinsel "Tinsel" yes
add_engine touche "Touche: The Adventures of the Fifth Musketeer" yes add_engine touche "Touche: The Adventures of the Fifth Musketeer" yes
add_engine tucker "Bud Tucker in Double Trouble" 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 MODULES += engines/sword2
endif endif
ifdef ENABLE_TEENAGENT
DEFINES += -DENABLE_TEENAGENT=$(ENABLE_TEENAGENT)
MODULES += engines/teenagent
endif
ifdef ENABLE_TINSEL ifdef ENABLE_TINSEL
DEFINES += -DENABLE_TINSEL=$(ENABLE_TINSEL) DEFINES += -DENABLE_TINSEL=$(ENABLE_TINSEL)
MODULES += engines/tinsel MODULES += engines/tinsel
@ -146,7 +151,3 @@ DEFINES += -DENABLE_TUCKER=$(ENABLE_TUCKER)
MODULES += engines/tucker MODULES += engines/tucker
endif 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 * along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* *
* $URL: https://www.switchlink.se/svn/teen/actor.cpp $ * $URL$
* $Id: objects.h 172 2009-08-11 08:06:58Z megath $ * $Id$
*/ */
#include "actor.h" #include "actor.h"
#include "objects.h" #include "objects.h"

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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