diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | build/root.build | 4 | ||||
-rw-r--r-- | manifest | 2 | ||||
-rw-r--r-- | msvc-common/.gitignore | 17 |
4 files changed, 20 insertions, 4 deletions
@@ -0,0 +1 @@ +.bdep/ diff --git a/build/root.build b/build/root.build index 6c3f487..a7ce150 100644 --- a/build/root.build +++ b/build/root.build @@ -2,7 +2,7 @@ # copyright : Copyright (c) 2014-2018 Code Synthesis Ltd # license : MIT; see accompanying LICENSE file -cxx.std = 14 +cxx.std = latest using cxx @@ -11,4 +11,4 @@ ixx{*}: extension = ixx txx{*}: extension = txx cxx{*}: extension = cxx -cxx.poptions =+ "-I$src_root" +cxx.poptions =+ "-I$out_root" "-I$src_root" @@ -1,7 +1,7 @@ : 1 name: msvc-linux version: 0.8.0-a.0.z -summary: MS Visual C++ driver scripts +summary: MS Visual C++ as cross-compiler driver scripts license: MIT tags: msvc, vc, c++, script description-file: README diff --git a/msvc-common/.gitignore b/msvc-common/.gitignore index fd4e537..b2667c9 100644 --- a/msvc-common/.gitignore +++ b/msvc-common/.gitignore @@ -1,7 +1,22 @@ # Compiler/linker output. # -msvc-filter *.d +*.t +*.i *.ii *.o +*.obj +*.so +*.dll +*.a +*.lib +*.exp +*.pdb +*.ilk +*.exe +*.exe.dlls/ +*.exe.manifest +*.pc + +msvc-filter version.hxx |