diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-07-05 12:53:44 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-07-05 12:53:44 +0200 |
commit | ff5f2eca6da0c8ba309ee9fd39b48f0b14ddb977 (patch) | |
tree | a4e192e93fa59c30f939cdd2892a790229d1abe0 | |
parent | 0c9b579b9b1fd2142106cf94dd18c71f5f5438db (diff) |
Various fixes and cleanups
-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 |