Accessing VCLinkerTool from a macro
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
I want to mess around with the Linker settings from a Macro, but I can't seem to find the interface to use. Here's what I have now. I can successfully enumerate down and retrieve the release Configuration object. But I don't know where to go from here. Has anybody done something like this before? Sub SetupRelease() Dim proj As Project Dim confs As Configurations Dim conf As Configuration Dim linker As VCLinkerTool For Each proj In Application.Solution.Projects confs = proj.ConfigurationManager().ConfigurationRow("Release") For Each conf In confs ' I don't know how to get the VCLinkerTool from here Next Next End Sub