DEVTOOLS: Renamed 'tools' directory to 'devtools'
28
.gitignore
vendored
@ -90,20 +90,20 @@ lib*.a
|
||||
/test/runner.cpp
|
||||
/test/*.dSYM
|
||||
|
||||
/tools/convbdf
|
||||
/tools/md5table
|
||||
/tools/make-scumm-fontdata
|
||||
/tools/create_drascula/create_drascula
|
||||
/tools/create_hugo/create_hugo
|
||||
/tools/create_kyradat/create_kyradat
|
||||
/tools/create_lure/create_lure
|
||||
/tools/create_mads/create_mads
|
||||
/tools/create_project/create_project
|
||||
/tools/create_teenagent/create_teenagent
|
||||
/tools/create_toon/create_toon
|
||||
/tools/create_translations/create_translations
|
||||
/tools/qtable/qtable
|
||||
/tools/skycpt/skycpt
|
||||
/devtools/convbdf
|
||||
/devtools/md5table
|
||||
/devtools/make-scumm-fontdata
|
||||
/devtools/create_drascula/create_drascula
|
||||
/devtools/create_hugo/create_hugo
|
||||
/devtools/create_kyradat/create_kyradat
|
||||
/devtools/create_lure/create_lure
|
||||
/devtools/create_mads/create_mads
|
||||
/devtools/create_project/create_project
|
||||
/devtools/create_teenagent/create_teenagent
|
||||
/devtools/create_toon/create_toon
|
||||
/devtools/create_translations/create_translations
|
||||
/devtools/qtable/qtable
|
||||
/devtools/skycpt/skycpt
|
||||
|
||||
#ignore thumbnails created by windows
|
||||
Thumbs.db
|
||||
|
@ -16,7 +16,7 @@ all: $(EXECUTABLE) plugins
|
||||
######################################################################
|
||||
|
||||
PLUGINS :=
|
||||
MODULES := test tools base $(MODULES)
|
||||
MODULES := test devtools base $(MODULES)
|
||||
|
||||
-include $(srcdir)/engines/engines.mk
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
# $URL$
|
||||
# $Id$
|
||||
|
||||
MODULE := tools/create_drascula
|
||||
MODULE := devtools/create_drascula
|
||||
|
||||
MODULE_OBJS := \
|
||||
create_drascula.o
|
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
Before Width: | Height: | Size: 774 B After Width: | Height: | Size: 774 B |
@ -1,4 +1,4 @@
|
||||
MODULE := tools/create_hugo
|
||||
MODULE := devtools/create_hugo
|
||||
|
||||
MODULE_OBJS := \
|
||||
create_hugo.o
|
@ -1,7 +1,7 @@
|
||||
# $URL$
|
||||
# $Id$
|
||||
|
||||
MODULE := tools/create_kyradat
|
||||
MODULE := devtools/create_kyradat
|
||||
|
||||
MODULE_OBJS := \
|
||||
create_kyradat.o \
|
@ -1,7 +1,7 @@
|
||||
# $URL$
|
||||
# $Id$
|
||||
|
||||
MODULE := tools/create_lure
|
||||
MODULE := devtools/create_lure
|
||||
|
||||
MODULE_OBJS := \
|
||||
create_lure_dat.o \
|
@ -1,7 +1,7 @@
|
||||
# $URL$
|
||||
# $Id$
|
||||
|
||||
MODULE := tools/create_mads
|
||||
MODULE := devtools/create_mads
|
||||
|
||||
MODULE_OBJS := \
|
||||
main.o \
|
@ -1,7 +1,7 @@
|
||||
# $URL$
|
||||
# $Id$
|
||||
|
||||
MODULE := tools/create_project
|
||||
MODULE := devtools/create_project
|
||||
|
||||
MODULE_OBJS := \
|
||||
create_project.o \
|
@ -152,7 +152,7 @@ std::string MSVCProvider::getPreBuildEvent() const {
|
||||
cmdLine = "@echo off\n"
|
||||
"echo Executing Pre-Build script...\n"
|
||||
"echo.\n"
|
||||
"@call "$(SolutionDir)../../tools/create_project/scripts/prebuild.cmd" "$(SolutionDir)/../.."\n"
|
||||
"@call "$(SolutionDir)../../devtools/create_project/scripts/prebuild.cmd" "$(SolutionDir)/../.."\n"
|
||||
"EXIT /B0";
|
||||
|
||||
return cmdLine;
|
||||
@ -164,7 +164,7 @@ std::string MSVCProvider::getPostBuildEvent(bool isWin32) const {
|
||||
cmdLine = "@echo off\n"
|
||||
"echo Executing Post-Build script...\n"
|
||||
"echo.\n"
|
||||
"@call "$(SolutionDir)../../tools/create_project/scripts/postbuild.cmd" "$(SolutionDir)/../.." "$(OutDir)" ";
|
||||
"@call "$(SolutionDir)../../devtools/create_project/scripts/postbuild.cmd" "$(SolutionDir)/../.." "$(OutDir)" ";
|
||||
|
||||
cmdLine += (isWin32) ? "x86" : "x64";
|
||||
|