Compiling vgui controls.lib: Difference between revisions

From Valve Developer Community
Jump to navigation Jump to search
mNo edit summary
m (Comprehensive)
Line 4: Line 4:


:{|style="background:transparent;"
:{|style="background:transparent;"
|colspan="2"| On line 171 in AnimationController
|<pre style="margin:0px 0px 0px 0px;">return AnimationController::RelativeAlignment::a_northwest;</pre>
|-
|-
| Replace || <pre>return AnimationController::RelativeAlignment::a_northwest;</pre>
|style="text-align:center;"|&darr;
|-
|-
| With || <pre>return a_northwest;</pre>
|<pre style="margin:0px 0px 0px 0px;">return a_northwest;</pre>
|}
|}



Revision as of 06:59, 4 April 2006

Template:Wrongtitle

The following is a short guide to successfully compiling your vgui2 modifications to lib\public\vgui_controls.lib.

return AnimationController::RelativeAlignment::a_northwest;
return a_northwest;

Open src\vgui2\controls\vgui_controls.vcproj in your MSVC++ .NET and compile it with the Release configuration.

The library should be copied and overwrite lib\public\vgui_controls.lib once the compilation is complete.

Note.pngNote:The client project requires a rebuild once the new vgui_controls.lib is made to relink it.