我正在使用 MS Visual Studio 2019 构建一个 c++ 项目
我有一个解决方案,其中三个项目
一个用于可执行文件,另一个用于静态库
现在我想更改可执行文件的链接库的顺序
最后发现它们是按照它的顺序链接的,project.vcxproj
我用文本编辑器手动更改了顺序,最后成功得到结果
但我不知道如何在 Visual Studio GUI 中做到这一点
如果库在我的project.vcxproj
Can I change the order of the libraries with Visual Studio GUI 中描述如下?
...
<ItemGroup>
<ProjectReference Include="..\ALibrary\ALibrary.vcxproj">
<Project>{dbc3f07c-3bf9-4582-99c8-cbd8fe344e5c}</Project>
</ProjectReference>
<ProjectReference Include="..\BLibrary\BLibrary.vcxproj">
<Project>{fbbe1fd4-e968-40d8-aab8-e2a54e9c9268}</Project>
</ProjectReference>
</ItemGroup>
...