<<Modern CMake>> 翻译 2.2 CMake 编程 流程控制 CMake有一个 if 语句, 经年累月之后,现在它已经相当复杂. 您可以在 if 语句中使用全大写字母书写一系列关键字,并且您通常可以直接通过名称(if语句在历史上出现早于变量扩展)或使用 ${} 语法来引用变量. 下面是 if 语句的示例: if(variable) # If variable is `ON`, `YES`, `TRUE`, `Y`, or non zero number else()…
本文翻译自Hans Kilian的文章 Creating a containerized .NET core application in less than 10 lines of code https://medium.com/@hkkilian/creating-a-containerized-net-core-application-in-less-than-10-lines-of-code-567f4572ef01 Docker的一个优势是你可以在别人的容器之上创建你自己的容器.在这片…