浏览代码

Update rexm.c

pull/5108/head
Ray 2 个月前
父节点
当前提交
27d7e61f28
共有 1 个文件被更改,包括 6 次插入4 次删除
  1. +6
    -4
      tools/rexm/rexm.c

+ 6
- 4
tools/rexm/rexm.c 查看文件

@ -958,10 +958,7 @@ int main(int argc, char *argv[])
"..\\..\\examples\\core", TextFormat("..\\..\\examples\\%s", exInfo->category));
}
// WARNING: Adding a .vcxproj to .sln can not be automated with
// "dotnet" tool (C# projects only)
// "devenv" tool (no adding support, only building)
// It must be done manually editing the .sln file
// Add project (.vcxproj) to raylib solution (.sln)
if (exInfo->status & VALID_NOT_IN_VCXSOL)
{
AddVSProjectToSolution(TextFormat("%s/../projects/VS2022/examples/%s.vcxproj", exBasePath, exName),
@ -1774,11 +1771,16 @@ static void ClearExampleResources(char **resPaths)
}
// TODO: Add VS project (.vcxproj) to existing VS solution (.sol)
// WARNING: Adding a .vcxproj to .sln can not be automated with:
// - "dotnet" tool (C# projects only)
// - "devenv" tool (no adding support, only building)
// It must be done manually editing the .sln file
static int AddVSProjectToSolution(const char *projFile, const char *solFile)
{
int result = 0;
// Generate unique UUID:
// Make sure the file is found and the UUID generated is valid
// C:\Program Files (x86)\Windows Kits\10\bin\10.0.26100.0\x64\uuidgen.exe > saved_uuid.txt
// Add project to the list:

正在加载...
取消
保存