我正在将利用2005年视觉演播室创建的C++项目转换为CMake,并用列入该项目的资源档案 problem倒了问题。
该项目包括一个<代码>.rc文档、一个>的星座(>.ico
文档和一个.rc2
文档。
The regular .rc
file works fine in the generated project and uses the resource compiler. The .ico
and .rc2
files however are causing problems when they are just being included, because in the generated project Visual Studio attempts to compile them using the C/C++ compiler.
我假设这些档案载于.rc
文档中,因此也许会努力不将这些档案列入CMakeList。 txt文档,但由于显然有可能将这些档案列入项目(原始项目可见)。 我愿这样做,以便所生成项目的用户能够看到这些档案正在使用。
What is the correct way to handle these extra VS resource files in CMake?