Commit 4a667c72 authored by Jack Jansen's avatar Jack Jansen

CodeWarrior includes Waste and Internet Config nowadays, obviating the need for separate downloads.

parent 8f54f2a3
...@@ -175,23 +175,40 @@ def genallprojects(force=0): ...@@ -175,23 +175,40 @@ def genallprojects(force=0):
genpluginproject("all", "calldll", sources=["calldll.c"]) genpluginproject("all", "calldll", sources=["calldll.c"])
genpluginproject("all", "ColorPicker") genpluginproject("all", "ColorPicker")
genpluginproject("ppc", "Printing") genpluginproject("ppc", "Printing")
## genpluginproject("ppc", "waste",
## sources=[
## "wastemodule.c",
## 'WEAccessors.c', 'WEBirthDeath.c', 'WEDebug.c',
## 'WEDrawing.c', 'WEFontTables.c', 'WEHighLevelEditing.c',
## 'WEICGlue.c', 'WEInlineInput.c', 'WELineLayout.c', 'WELongCoords.c',
## 'WELowLevelEditing.c', 'WEMouse.c', 'WEObjects.c', 'WEScraps.c',
## 'WESelecting.c', 'WESelectors.c', 'WEUserSelectors.c', 'WEUtilities.c',
## 'WEObjectHandlers.c',
## 'WETabs.c',
## 'WETabHooks.c'],
## libraries=['DragLib'],
## extradirs=[
## '::::Waste 1.3 Distribution:*',
## '::::ICProgKit1.4:APIs']
## )
# This is a hack, combining parts of Waste 2.0 with parts of 1.3
genpluginproject("ppc", "waste", genpluginproject("ppc", "waste",
sources=[ sources=[
"wastemodule.c", "wastemodule.c",
'WEAccessors.c', 'WEBirthDeath.c', 'WEDebug.c', "WEObjectHandlers.c",
'WEDrawing.c', 'WEFontTables.c', 'WEHighLevelEditing.c', "WETabs.c", "WETabHooks.c"],
'WEICGlue.c', 'WEInlineInput.c', 'WELineLayout.c', 'WELongCoords.c', libraries=[
'WELowLevelEditing.c', 'WEMouse.c', 'WEObjects.c', 'WEScraps.c', "WASTE.PPC.lib",
'WESelecting.c', 'WESelectors.c', 'WEUserSelectors.c', 'WEUtilities.c', "TextCommon",
'WEObjectHandlers.c', "UnicodeConverter",
'WETabs.c', "DragLib",
'WETabHooks.c'], ],
libraries=['DragLib'],
extradirs=[ extradirs=[
'::::Waste 1.3 Distribution:*', '{Compiler}:MacOS Support:(Third Party Support):Waste 2.0 Distribution:C_C++ Headers',
'::::ICProgKit1.4:APIs'] '{Compiler}:MacOS Support:(Third Party Support):Waste 2.0 Distribution:Static Libraries',
'::wastemods',
]
) )
# This is a hack, combining parts of Waste 2.0 with parts of 1.3
genpluginproject("carbon", "waste", genpluginproject("carbon", "waste",
sources=[ sources=[
"wastemodule.c", "wastemodule.c",
...@@ -201,15 +218,15 @@ def genallprojects(force=0): ...@@ -201,15 +218,15 @@ def genallprojects(force=0):
extradirs=[ extradirs=[
'{Compiler}:MacOS Support:(Third Party Support):Waste 2.0 Distribution:C_C++ Headers', '{Compiler}:MacOS Support:(Third Party Support):Waste 2.0 Distribution:C_C++ Headers',
'{Compiler}:MacOS Support:(Third Party Support):Waste 2.0 Distribution:Static Libraries', '{Compiler}:MacOS Support:(Third Party Support):Waste 2.0 Distribution:Static Libraries',
'::::Waste 1.3 Distribution:Extras:Sample Object Handlers', '::wastemods',
'::::Waste 1.3 Distribution:Extras:Waste Tabs 1.3.2'] ]
) )
## '::::Waste 1.3 Distribution:Extras:Sample Object Handlers',
## '::::Waste 1.3 Distribution:Extras:Waste Tabs 1.3.2']
genpluginproject("ppc", "ctb") genpluginproject("ppc", "ctb")
genpluginproject("ppc", "icglue", sources=["icgluemodule.c"], genpluginproject("ppc", "icglue", sources=["icgluemodule.c"],
libraries=["ICGlueCFM-PPC.lib"], libraries=["InternetConfigLib"])
extradirs=["::::ICProgKit1.4:APIs"]) genpluginproject("carbon", "icglue", sources=["icgluemodule.c"])
genpluginproject("carbon", "icglue", sources=["icgluemodule.c"],
extradirs=["::::ICProgKit1.4:APIs"])
genpluginproject("ppc", "macspeech", libraries=["SpeechLib"]) genpluginproject("ppc", "macspeech", libraries=["SpeechLib"])
if __name__ == '__main__': if __name__ == '__main__':
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment