浏览代码

Correction indentation

Jean-Michel Caricand 2 年之前
父节点
当前提交
23eaf27c9c
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      generate.py

+ 2 - 2
generate.py

@@ -492,8 +492,8 @@ def generateVCXPROJ(conf, ctx, lib, type):
 
         out.write("<ItemGroup>\n");
         for file in lib["header"]["files"]:
-        if "h"==file["ext"]:
-            out.write("  <ClInclude Include=\""+os.path.relpath(file["path"], filepath)+"\"/>\n");
+            if "h"==file["ext"]:
+                out.write("  <ClInclude Include=\""+os.path.relpath(file["path"], filepath)+"\"/>\n");
         out.write("</ItemGroup>\n");
         out.write("<ItemGroup>\n");
         for file in lib["source"]["files"]: