forked from scummvm/scummvm
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CONFIGURE: Added possibility to define engine components. Turn lua in…
…to component Components are parts of ScummVM common code that could be optionally built only when the relevant engines are enabled
- Loading branch information
Showing
6 changed files
with
78 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# This file is included from the main "configure" script | ||
# add_engine [name] [desc] [build-by-default] [subengines] [base games] [deps] | ||
add_engine hdb "Hyperspace Delivery Boy!" yes "" "" "16bit highres lua" | ||
# add_engine [name] [desc] [build-by-default] [subengines] [base games] [deps] [components] | ||
add_engine hdb "Hyperspace Delivery Boy!" yes "" "" "16bit highres" "lua" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# This file is included from the main "configure" script | ||
# add_engine [name] [desc] [build-by-default] [subengines] [base games] [deps] | ||
add_engine sword25 "Broken Sword 2.5" yes "" "" "png 16bit highres lua theoradec" | ||
# add_engine [name] [desc] [build-by-default] [subengines] [base games] [deps] [components] | ||
add_engine sword25 "Broken Sword 2.5" yes "" "" "png 16bit highres theoradec" "lua" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# This file is included from the main "configure" script | ||
# add_engine [name] [desc] [build-by-default] [subengines] [base games] [deps] | ||
add_engine tetraedge "Tetraedge" yes "" "" "highres 3d freetype2 vorbis png jpeg lua theoradec" | ||
# add_engine [name] [desc] [build-by-default] [subengines] [base games] [deps] [components] | ||
add_engine tetraedge "Tetraedge" yes "" "" "highres 3d freetype2 vorbis png jpeg theoradec" "lua" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# This file is included from the main "configure" script | ||
# add_engine [name] [desc] [build-by-default] [subengines] [base games] [deps] | ||
# add_engine [name] [desc] [build-by-default] [subengines] [base games] [deps] [components] | ||
add_engine ultima "Ultima" yes "ultima1 ultima4 ultima6 ultima8" | ||
add_engine ultima1 "Ultima I - The First Age of Darkness" no "" "" "" | ||
add_engine ultima1 "Ultima I - The First Age of Darkness" no "" "" "" | ||
add_engine ultima4 "Ultima IV - Quest of the Avatar" yes "" "" "16bit" | ||
add_engine ultima6 "Ultima VI = The False Prophet" yes "" "" "highres 16bit lua" | ||
add_engine ultima6 "Ultima VI = The False Prophet" yes "" "" "highres 16bit" "lua" | ||
add_engine ultima8 "Ultima VIII - Pagan" yes "" "" "highres 16bit" |