简体   繁体   English

多目标解决方案构建器

[英]Multi-target solution builder

An opensource project currently uses CMake to generate project files for multiple versions of Visual Studio. 当前, 一个开源项目使用CMake为多个版本的Visual Studio生成项目文件。

I noticed that Node uses python script to do a similar thing but is more elegant since the output of the tool doesn't hardcode directory paths into those project files. 我注意到Node使用python脚本做类似的事情,但是更加优雅,因为该工具的输出不会将目录路径硬编码到那些项目文件中。 However the current node setup only seems to support 2010 and 2012. The node documentation doesn't say what the build tools are just "The build tools distributed with Node run on python." 但是,当前的节点设置似乎仅支持2010和2012。节点文档并未说明构建工具只是“随Node一起分发的构建工具在python上运行”。

The batch file included with Node calls python configure, but doing a search on that returns a zillion unrelated results. Node附带的批处理文件调用python configure,但是对其进行搜索将返回无数不相关的结果。

I was wondering if this tool/script is 我想知道这个工具/脚本是否

  • an open source project with website, documentation, etc. 一个带有网站,文档等的开源项目。
  • extensible to earlier versions of VS (2003 onwards). 可扩展到VS的早期版本(从2003年开始)。

What I am looking to do is produce a bunch of solutions and projects that should just work straight out the box and not be tied to a particular dev's directory layout like CMake does. 我想要做的是产生大量解决方案和项目,这些解决方案和项目应该可以直接使用,而不是像CMake那样与特定开发人员的目录布局绑定。 Also the script allows me to easily update multiple scripts if a file gets added or removed. 此外,如果添加或删除文件,该脚本还可以让我轻松地更新多个脚本。

It turns out Node uses GYP to generate it's project files. 事实证明,Node使用GYP生成其项目文件。 I had a quick play earlier and seems fairly easy to use. 我早些时候玩的很快,而且似乎很容易使用。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 Pytorch:CrossEntropyLoss 的多目标错误 - Pytorch: multi-target error with CrossEntropyLoss pytorch错误:CrossEntropyLoss()中不支持多目标 - pytorch error: multi-target not supported in CrossEntropyLoss() pytorch:“不支持多目标”错误消息 - pytorch: “multi-target not supported” error message Pytorch:需要一维目标张量,不支持多目标 - Pytorch: 1D target tensor expected, multi-target not supported 多目标同时具有因变量的分类和回归功能? - Multi-target having dependent variables as both classification and regression? 使用CNN超参数优化进行多目标回归时出错 - Error using CNN hyper parameter optimization for multi-target regression 使用 scikit-learn 进行多目标回归 - Multi-target regression using scikit-learn 如何解决多类分类中的“RuntimeError: 1D target tensor expected, multi-target not supported”? - How to solve “RuntimeError: 1D target tensor expected, multi-target not supported” in multi-class classification? RuntimeError: 1D 目标张量,不支持多目标 - RuntimeError: 1D target tensor expected, multi-target not supported Python: NumPy 如何解决这个问题(Pytorch RuntimeError:预期一维目标张量,不支持多目标) - how to solve this (Pytorch RuntimeError: 1D target tensor expected, multi-target not supported)
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM