mirror of
https://github.com/libretro/scummvm.git
synced 2024-11-30 04:40:39 +00:00
BUILD: Split engines/plugins_table header down to a file per engine.
This is the third and final commit enabling fully pluggable engines. Now providing an engine folder contains a configure.engine, engine.mk and engine-plugin.h file, it will be picked up automatically by the configure script.
This commit is contained in:
parent
d77cf95a18
commit
00c27a28f9
2
.gitignore
vendored
2
.gitignore
vendored
@ -105,6 +105,8 @@ project.xcworkspace
|
|||||||
|
|
||||||
/plugins
|
/plugins
|
||||||
|
|
||||||
|
/engines/plugins_table.h
|
||||||
|
|
||||||
/test/runner
|
/test/runner
|
||||||
/test/runner.cpp
|
/test/runner.cpp
|
||||||
/test/*.dSYM
|
/test/*.dSYM
|
||||||
|
2
Makefile
2
Makefile
@ -83,7 +83,7 @@ include $(srcdir)/Makefile.common
|
|||||||
|
|
||||||
# check if configure has been run or has been changed since last run
|
# check if configure has been run or has been changed since last run
|
||||||
ENGINE_SUBDIRS_CONFIGURE := $(wildcard $(srcdir)/engines/*/configure.engine)
|
ENGINE_SUBDIRS_CONFIGURE := $(wildcard $(srcdir)/engines/*/configure.engine)
|
||||||
config.h config.mk: $(srcdir)/configure $(ENGINE_SUBDIRS_CONFIGURE)
|
config.h config.mk engines/plugins_table.h: $(srcdir)/configure $(ENGINE_SUBDIRS_CONFIGURE)
|
||||||
ifeq "$(findstring config.mk,$(MAKEFILE_LIST))" "config.mk"
|
ifeq "$(findstring config.mk,$(MAKEFILE_LIST))" "config.mk"
|
||||||
@echo "Running $(srcdir)/configure with the last specified parameters"
|
@echo "Running $(srcdir)/configure with the last specified parameters"
|
||||||
@sleep 2
|
@sleep 2
|
||||||
|
@ -81,7 +81,7 @@ $(EXECUTABLE): $(OBJS)
|
|||||||
$(QUIET_LINK)$(LD) $(LDFLAGS) $(PRE_OBJS_FLAGS) $+ $(POST_OBJS_FLAGS) $(LIBS) -o $@
|
$(QUIET_LINK)$(LD) $(LDFLAGS) $(PRE_OBJS_FLAGS) $+ $(POST_OBJS_FLAGS) $(LIBS) -o $@
|
||||||
|
|
||||||
distclean: clean clean-devtools
|
distclean: clean clean-devtools
|
||||||
$(RM) config.h config.mk config.log
|
$(RM) config.h config.mk config.log engines/plugins_table.h
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$(RM_REC) $(DEPDIRS)
|
$(RM_REC) $(DEPDIRS)
|
||||||
|
11
configure
vendored
11
configure
vendored
@ -4382,3 +4382,14 @@ include \$(srcdir)/Makefile
|
|||||||
EOF
|
EOF
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
echo "Creating engines/plugins_table.h"
|
||||||
|
cat > engines/plugins_table.h << EOF
|
||||||
|
/* This file is automatically generated by configure */
|
||||||
|
/* DO NOT EDIT MANUALLY */
|
||||||
|
// This file is being included by "base/plugins.cpp"
|
||||||
|
EOF
|
||||||
|
|
||||||
|
for i in $_srcdir/engines/*/engine-plugin.h; do
|
||||||
|
cat $i >> engines/plugins_table.h
|
||||||
|
done
|
||||||
|
3
engines/agi/engine-plugin.h
Normal file
3
engines/agi/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(AGI)
|
||||||
|
LINK_PLUGIN(AGI)
|
||||||
|
#endif
|
3
engines/agos/engine-plugin.h
Normal file
3
engines/agos/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(AGOS)
|
||||||
|
LINK_PLUGIN(AGOS)
|
||||||
|
#endif
|
3
engines/avalanche/engine-plugin.h
Normal file
3
engines/avalanche/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(AVALANCHE)
|
||||||
|
LINK_PLUGIN(AVALANCHE)
|
||||||
|
#endif
|
3
engines/cge/engine-plugin.h
Normal file
3
engines/cge/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(CGE)
|
||||||
|
LINK_PLUGIN(CGE)
|
||||||
|
#endif
|
3
engines/cine/engine-plugin.h
Normal file
3
engines/cine/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(CINE)
|
||||||
|
LINK_PLUGIN(CINE)
|
||||||
|
#endif
|
3
engines/composer/engine-plugin.h
Normal file
3
engines/composer/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(COMPOSER)
|
||||||
|
LINK_PLUGIN(COMPOSER)
|
||||||
|
#endif
|
3
engines/cruise/engine-plugin.h
Normal file
3
engines/cruise/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(CRUISE)
|
||||||
|
LINK_PLUGIN(CRUISE)
|
||||||
|
#endif
|
3
engines/draci/engine-plugin.h
Normal file
3
engines/draci/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(DRACI)
|
||||||
|
LINK_PLUGIN(DRACI)
|
||||||
|
#endif
|
3
engines/drascula/engine-plugin.h
Normal file
3
engines/drascula/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(DRASCULA)
|
||||||
|
LINK_PLUGIN(DRASCULA)
|
||||||
|
#endif
|
3
engines/dreamweb/engine-plugin.h
Normal file
3
engines/dreamweb/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(DREAMWEB)
|
||||||
|
LINK_PLUGIN(DREAMWEB)
|
||||||
|
#endif
|
3
engines/fullpipe/engine-plugin.h
Normal file
3
engines/fullpipe/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(FULLPIPE)
|
||||||
|
LINK_PLUGIN(FULLPIPE)
|
||||||
|
#endif
|
3
engines/gob/engine-plugin.h
Normal file
3
engines/gob/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(GOB)
|
||||||
|
LINK_PLUGIN(GOB)
|
||||||
|
#endif
|
3
engines/groovie/engine-plugin.h
Normal file
3
engines/groovie/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(GROOVIE)
|
||||||
|
LINK_PLUGIN(GROOVIE)
|
||||||
|
#endif
|
3
engines/hopkins/engine-plugin.h
Normal file
3
engines/hopkins/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(HOPKINS)
|
||||||
|
LINK_PLUGIN(HOPKINS)
|
||||||
|
#endif
|
3
engines/hugo/engine-plugin.h
Normal file
3
engines/hugo/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(HUGO)
|
||||||
|
LINK_PLUGIN(HUGO)
|
||||||
|
#endif
|
3
engines/kyra/engine-plugin.h
Normal file
3
engines/kyra/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(KYRA)
|
||||||
|
LINK_PLUGIN(KYRA)
|
||||||
|
#endif
|
3
engines/lastexpress/engine-plugin.h
Normal file
3
engines/lastexpress/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(LASTEXPRESS)
|
||||||
|
LINK_PLUGIN(LASTEXPRESS)
|
||||||
|
#endif
|
3
engines/lure/engine-plugin.h
Normal file
3
engines/lure/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(LURE)
|
||||||
|
LINK_PLUGIN(LURE)
|
||||||
|
#endif
|
3
engines/made/engine-plugin.h
Normal file
3
engines/made/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(MADE)
|
||||||
|
LINK_PLUGIN(MADE)
|
||||||
|
#endif
|
3
engines/mohawk/engine-plugin.h
Normal file
3
engines/mohawk/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(MOHAWK)
|
||||||
|
LINK_PLUGIN(MOHAWK)
|
||||||
|
#endif
|
3
engines/mortevielle/engine-plugin.h
Normal file
3
engines/mortevielle/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(MORTEVIELLE)
|
||||||
|
LINK_PLUGIN(MORTEVIELLE)
|
||||||
|
#endif
|
3
engines/neverhood/engine-plugin.h
Normal file
3
engines/neverhood/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(NEVERHOOD)
|
||||||
|
LINK_PLUGIN(NEVERHOOD)
|
||||||
|
#endif
|
3
engines/parallaction/engine-plugin.h
Normal file
3
engines/parallaction/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(PARALLACTION)
|
||||||
|
LINK_PLUGIN(PARALLACTION)
|
||||||
|
#endif
|
3
engines/pegasus/engine-plugin.h
Normal file
3
engines/pegasus/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(PEGASUS)
|
||||||
|
LINK_PLUGIN(PEGASUS)
|
||||||
|
#endif
|
@ -1,130 +0,0 @@
|
|||||||
// This file is being included by "base/plugins.cpp"
|
|
||||||
#if PLUGIN_ENABLED_STATIC(SCUMM)
|
|
||||||
LINK_PLUGIN(SCUMM)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(AGI)
|
|
||||||
LINK_PLUGIN(AGI)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(AGOS)
|
|
||||||
LINK_PLUGIN(AGOS)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(AVALANCHE)
|
|
||||||
LINK_PLUGIN(AVALANCHE)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(CGE)
|
|
||||||
LINK_PLUGIN(CGE)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(CINE)
|
|
||||||
LINK_PLUGIN(CINE)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(COMPOSER)
|
|
||||||
LINK_PLUGIN(COMPOSER)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(CRUISE)
|
|
||||||
LINK_PLUGIN(CRUISE)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(DRACI)
|
|
||||||
LINK_PLUGIN(DRACI)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(DRASCULA)
|
|
||||||
LINK_PLUGIN(DRASCULA)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(DREAMWEB)
|
|
||||||
LINK_PLUGIN(DREAMWEB)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(FULLPIPE)
|
|
||||||
LINK_PLUGIN(FULLPIPE)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(GOB)
|
|
||||||
LINK_PLUGIN(GOB)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(GROOVIE)
|
|
||||||
LINK_PLUGIN(GROOVIE)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(HOPKINS)
|
|
||||||
LINK_PLUGIN(HOPKINS)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(HUGO)
|
|
||||||
LINK_PLUGIN(HUGO)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(KYRA)
|
|
||||||
LINK_PLUGIN(KYRA)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(MORTEVIELLE)
|
|
||||||
LINK_PLUGIN(MORTEVIELLE)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(LASTEXPRESS)
|
|
||||||
LINK_PLUGIN(LASTEXPRESS)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(LURE)
|
|
||||||
LINK_PLUGIN(LURE)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(MADE)
|
|
||||||
LINK_PLUGIN(MADE)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(MOHAWK)
|
|
||||||
LINK_PLUGIN(MOHAWK)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(NEVERHOOD)
|
|
||||||
LINK_PLUGIN(NEVERHOOD)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(PARALLACTION)
|
|
||||||
LINK_PLUGIN(PARALLACTION)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(PEGASUS)
|
|
||||||
LINK_PLUGIN(PEGASUS)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(QUEEN)
|
|
||||||
LINK_PLUGIN(QUEEN)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(SAGA)
|
|
||||||
LINK_PLUGIN(SAGA)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(SCI)
|
|
||||||
LINK_PLUGIN(SCI)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(SKY)
|
|
||||||
LINK_PLUGIN(SKY)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(SWORD1)
|
|
||||||
LINK_PLUGIN(SWORD1)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(SWORD2)
|
|
||||||
LINK_PLUGIN(SWORD2)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(SWORD25)
|
|
||||||
LINK_PLUGIN(SWORD25)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(TEENAGENT)
|
|
||||||
LINK_PLUGIN(TEENAGENT)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(TESTBED)
|
|
||||||
LINK_PLUGIN(TESTBED)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(TINSEL)
|
|
||||||
LINK_PLUGIN(TINSEL)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(TOLTECS)
|
|
||||||
LINK_PLUGIN(TOLTECS)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(TONY)
|
|
||||||
LINK_PLUGIN(TONY)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(TOON)
|
|
||||||
LINK_PLUGIN(TOON)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(TSAGE)
|
|
||||||
LINK_PLUGIN(TSAGE)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(TOUCHE)
|
|
||||||
LINK_PLUGIN(TOUCHE)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(TUCKER)
|
|
||||||
LINK_PLUGIN(TUCKER)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(WINTERMUTE)
|
|
||||||
LINK_PLUGIN(WINTERMUTE)
|
|
||||||
#endif
|
|
||||||
#if PLUGIN_ENABLED_STATIC(ZVISION)
|
|
||||||
LINK_PLUGIN(ZVISION)
|
|
||||||
#endif
|
|
3
engines/queen/engine-plugin.h
Normal file
3
engines/queen/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(QUEEN)
|
||||||
|
LINK_PLUGIN(QUEEN)
|
||||||
|
#endif
|
3
engines/saga/engine-plugin.h
Normal file
3
engines/saga/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(SAGA)
|
||||||
|
LINK_PLUGIN(SAGA)
|
||||||
|
#endif
|
3
engines/sci/engine-plugin.h
Normal file
3
engines/sci/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(SCI)
|
||||||
|
LINK_PLUGIN(SCI)
|
||||||
|
#endif
|
3
engines/scumm/engine-plugin.h
Normal file
3
engines/scumm/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(SCUMM)
|
||||||
|
LINK_PLUGIN(SCUMM)
|
||||||
|
#endif
|
3
engines/sky/engine-plugin.h
Normal file
3
engines/sky/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(SKY)
|
||||||
|
LINK_PLUGIN(SKY)
|
||||||
|
#endif
|
3
engines/sword1/engine-plugin.h
Normal file
3
engines/sword1/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(SWORD1)
|
||||||
|
LINK_PLUGIN(SWORD1)
|
||||||
|
#endif
|
3
engines/sword2/engine-plugin.h
Normal file
3
engines/sword2/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(SWORD2)
|
||||||
|
LINK_PLUGIN(SWORD2)
|
||||||
|
#endif
|
3
engines/sword25/engine-plugin.h
Normal file
3
engines/sword25/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(SWORD25)
|
||||||
|
LINK_PLUGIN(SWORD25)
|
||||||
|
#endif
|
3
engines/teenagent/engine-plugin.h
Normal file
3
engines/teenagent/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(TEENAGENT)
|
||||||
|
LINK_PLUGIN(TEENAGENT)
|
||||||
|
#endif
|
3
engines/testbed/engine-plugin.h
Normal file
3
engines/testbed/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(TESTBED)
|
||||||
|
LINK_PLUGIN(TESTBED)
|
||||||
|
#endif
|
3
engines/tinsel/engine-plugin.h
Normal file
3
engines/tinsel/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(TINSEL)
|
||||||
|
LINK_PLUGIN(TINSEL)
|
||||||
|
#endif
|
3
engines/toltecs/engine-plugin.h
Normal file
3
engines/toltecs/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(TOLTECS)
|
||||||
|
LINK_PLUGIN(TOLTECS)
|
||||||
|
#endif
|
3
engines/tony/engine-plugin.h
Normal file
3
engines/tony/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(TONY)
|
||||||
|
LINK_PLUGIN(TONY)
|
||||||
|
#endif
|
3
engines/toon/engine-plugin.h
Normal file
3
engines/toon/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(TOON)
|
||||||
|
LINK_PLUGIN(TOON)
|
||||||
|
#endif
|
3
engines/touche/engine-plugin.h
Normal file
3
engines/touche/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(TOUCHE)
|
||||||
|
LINK_PLUGIN(TOUCHE)
|
||||||
|
#endif
|
3
engines/tsage/engine-plugin.h
Normal file
3
engines/tsage/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(TSAGE)
|
||||||
|
LINK_PLUGIN(TSAGE)
|
||||||
|
#endif
|
3
engines/tucker/engine-plugin.h
Normal file
3
engines/tucker/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(TUCKER)
|
||||||
|
LINK_PLUGIN(TUCKER)
|
||||||
|
#endif
|
3
engines/wintermute/engine-plugin.h
Normal file
3
engines/wintermute/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(WINTERMUTE)
|
||||||
|
LINK_PLUGIN(WINTERMUTE)
|
||||||
|
#endif
|
3
engines/zvision/engine-plugin.h
Normal file
3
engines/zvision/engine-plugin.h
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
#if PLUGIN_ENABLED_STATIC(ZVISION)
|
||||||
|
LINK_PLUGIN(ZVISION)
|
||||||
|
#endif
|
Loading…
Reference in New Issue
Block a user