Quellcode durchsuchen

Correction indentation

Jean-Michel Caricand vor 2 Jahren
Ursprung
Commit
23eaf27c9c
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  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"]: