Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4a667c7

Browse files
committed
CodeWarrior includes Waste and Internet Config nowadays, obviating the need for separate downloads.
1 parent 8f54f2a commit 4a667c7

1 file changed

Lines changed: 35 additions & 18 deletions

File tree

Mac/scripts/genpluginprojects.py

Lines changed: 35 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -175,23 +175,40 @@ def genallprojects(force=0):
175175
genpluginproject("all", "calldll", sources=["calldll.c"])
176176
genpluginproject("all", "ColorPicker")
177177
genpluginproject("ppc", "Printing")
178+
## genpluginproject("ppc", "waste",
179+
## sources=[
180+
## "wastemodule.c",
181+
## 'WEAccessors.c', 'WEBirthDeath.c', 'WEDebug.c',
182+
## 'WEDrawing.c', 'WEFontTables.c', 'WEHighLevelEditing.c',
183+
## 'WEICGlue.c', 'WEInlineInput.c', 'WELineLayout.c', 'WELongCoords.c',
184+
## 'WELowLevelEditing.c', 'WEMouse.c', 'WEObjects.c', 'WEScraps.c',
185+
## 'WESelecting.c', 'WESelectors.c', 'WEUserSelectors.c', 'WEUtilities.c',
186+
## 'WEObjectHandlers.c',
187+
## 'WETabs.c',
188+
## 'WETabHooks.c'],
189+
## libraries=['DragLib'],
190+
## extradirs=[
191+
## '::::Waste 1.3 Distribution:*',
192+
## '::::ICProgKit1.4:APIs']
193+
## )
194+
# This is a hack, combining parts of Waste 2.0 with parts of 1.3
178195
genpluginproject("ppc", "waste",
179196
sources=[
180197
"wastemodule.c",
181-
'WEAccessors.c', 'WEBirthDeath.c', 'WEDebug.c',
182-
'WEDrawing.c', 'WEFontTables.c', 'WEHighLevelEditing.c',
183-
'WEICGlue.c', 'WEInlineInput.c', 'WELineLayout.c', 'WELongCoords.c',
184-
'WELowLevelEditing.c', 'WEMouse.c', 'WEObjects.c', 'WEScraps.c',
185-
'WESelecting.c', 'WESelectors.c', 'WEUserSelectors.c', 'WEUtilities.c',
186-
'WEObjectHandlers.c',
187-
'WETabs.c',
188-
'WETabHooks.c'],
189-
libraries=['DragLib'],
198+
"WEObjectHandlers.c",
199+
"WETabs.c", "WETabHooks.c"],
200+
libraries=[
201+
"WASTE.PPC.lib",
202+
"TextCommon",
203+
"UnicodeConverter",
204+
"DragLib",
205+
],
190206
extradirs=[
191-
'::::Waste 1.3 Distribution:*',
192-
'::::ICProgKit1.4:APIs']
207+
'{Compiler}:MacOS Support:(Third Party Support):Waste 2.0 Distribution:C_C++ Headers',
208+
'{Compiler}:MacOS Support:(Third Party Support):Waste 2.0 Distribution:Static Libraries',
209+
'::wastemods',
210+
]
193211
)
194-
# This is a hack, combining parts of Waste 2.0 with parts of 1.3
195212
genpluginproject("carbon", "waste",
196213
sources=[
197214
"wastemodule.c",
@@ -201,15 +218,15 @@ def genallprojects(force=0):
201218
extradirs=[
202219
'{Compiler}:MacOS Support:(Third Party Support):Waste 2.0 Distribution:C_C++ Headers',
203220
'{Compiler}:MacOS Support:(Third Party Support):Waste 2.0 Distribution:Static Libraries',
204-
'::::Waste 1.3 Distribution:Extras:Sample Object Handlers',
205-
'::::Waste 1.3 Distribution:Extras:Waste Tabs 1.3.2']
221+
'::wastemods',
222+
]
206223
)
224+
## '::::Waste 1.3 Distribution:Extras:Sample Object Handlers',
225+
## '::::Waste 1.3 Distribution:Extras:Waste Tabs 1.3.2']
207226
genpluginproject("ppc", "ctb")
208227
genpluginproject("ppc", "icglue", sources=["icgluemodule.c"],
209-
libraries=["ICGlueCFM-PPC.lib"],
210-
extradirs=["::::ICProgKit1.4:APIs"])
211-
genpluginproject("carbon", "icglue", sources=["icgluemodule.c"],
212-
extradirs=["::::ICProgKit1.4:APIs"])
228+
libraries=["InternetConfigLib"])
229+
genpluginproject("carbon", "icglue", sources=["icgluemodule.c"])
213230
genpluginproject("ppc", "macspeech", libraries=["SpeechLib"])
214231

215232
if __name__ == '__main__':

0 commit comments

Comments
 (0)