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

Skip to content

Commit e8f53bb

Browse files
committed
Dynamically loaded toolbox modules don't need to link against each other anymore, due to the new glue code that ties them together.
1 parent f57a4a2 commit e8f53bb

1 file changed

Lines changed: 26 additions & 21 deletions

File tree

Mac/scripts/genpluginprojects.py

Lines changed: 26 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -107,32 +107,37 @@ def genallprojects(force=0):
107107
# bgen-generated Toolbox modules
108108
genpluginproject("ppc", "App", libraries=["AppearanceLib"])
109109
genpluginproject("carbon", "App")
110-
genpluginproject("ppc", "Cm",
111-
libraries=["QuickTimeLib"],
112-
extraexportsymbols=[
113-
"CmpObj_New",
114-
"CmpObj_Convert",
115-
"CmpInstObj_New",
116-
"CmpInstObj_Convert",
117-
])
118-
genpluginproject("carbon", "Cm",
119-
extraexportsymbols=[
120-
"CmpObj_New",
121-
"CmpObj_Convert",
122-
"CmpInstObj_New",
123-
"CmpInstObj_Convert",
124-
])
110+
## genpluginproject("ppc", "Cm",
111+
## libraries=["QuickTimeLib"],
112+
## extraexportsymbols=[
113+
## "CmpObj_New",
114+
## "CmpObj_Convert",
115+
## "CmpInstObj_New",
116+
## "CmpInstObj_Convert",
117+
## ])
118+
## genpluginproject("carbon", "Cm",
119+
## extraexportsymbols=[
120+
## "CmpObj_New",
121+
## "CmpObj_Convert",
122+
## "CmpInstObj_New",
123+
## "CmpInstObj_Convert",
124+
## ])
125+
genpluginproject("ppc", "Cm", libraries=["QuickTimeLib"])
126+
genpluginproject("carbon", "Cm")
125127
genpluginproject("all", "Fm")
126128
genpluginproject("ppc", "Help")
127129
genpluginproject("ppc", "Icn", libraries=["IconServicesLib"])
128130
genpluginproject("carbon", "Icn")
129131
genpluginproject("all", "List")
130-
genpluginproject("ppc", "Qt", libraries=["QuickTimeLib", "Cm.ppc.slb", "Qdoffs.ppc.slb"],
131-
extradirs=["::Plugins"])
132-
genpluginproject("carbon", "Qt", libraries=["Cm.carbon.slb", "Qdoffs.carbon.slb"],
133-
extradirs=["::Plugins"])
134-
genpluginproject("all", "Qdoffs",
135-
extraexportsymbols=["GWorldObj_New", "GWorldObj_Convert"])
132+
## genpluginproject("ppc", "Qt", libraries=["QuickTimeLib", "Cm.ppc.slb", "Qdoffs.ppc.slb"],
133+
## extradirs=["::Plugins"])
134+
genpluginproject("ppc", "Qt", libraries=["QuickTimeLib"])
135+
## genpluginproject("carbon", "Qt", libraries=["Cm.carbon.slb", "Qdoffs.carbon.slb"],
136+
## extradirs=["::Plugins"])
137+
genpluginproject("carbon", "Qt")
138+
## genpluginproject("all", "Qdoffs",
139+
## extraexportsymbols=["GWorldObj_New", "GWorldObj_Convert"])
140+
genpluginproject("all", "Qdoffs")
136141
genpluginproject("all", "Scrap")
137142
genpluginproject("ppc", "Snd", libraries=["SoundLib"])
138143
genpluginproject("carbon", "Snd")

0 commit comments

Comments
 (0)