diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-21 15:58:46 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2019-12-21 15:59:32 +0300 |
commit | 0e9861123ea6f9272f7043bab490d6f3192f72ba (patch) | |
tree | 1a81cee407a377d0f5605ad256828a94c96f7ba6 | |
parent | common.cmake: rename internal functions (diff) | |
download | cmake-common-0e9861123ea6f9272f7043bab490d6f3192f72ba.tar.gz cmake-common-0e9861123ea6f9272f7043bab490d6f3192f72ba.zip |
toolchains/boost: add *.exe toolchains
It doesn't work without the .exe on e.g. Cygwin.
Diffstat (limited to '')
-rw-r--r-- | toolchains/boost/mingw-w64-x64-exe.jam | 1 | ||||
-rw-r--r-- | toolchains/boost/mingw-w64-x86-exe.jam | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/toolchains/boost/mingw-w64-x64-exe.jam b/toolchains/boost/mingw-w64-x64-exe.jam new file mode 100644 index 0000000..3358a92 --- /dev/null +++ b/toolchains/boost/mingw-w64-x64-exe.jam @@ -0,0 +1 @@ +using gcc : : x86_64-w64-mingw32-g++.exe ; diff --git a/toolchains/boost/mingw-w64-x86-exe.jam b/toolchains/boost/mingw-w64-x86-exe.jam new file mode 100644 index 0000000..ad06bf3 --- /dev/null +++ b/toolchains/boost/mingw-w64-x86-exe.jam @@ -0,0 +1 @@ +using gcc : : i686-w64-mingw32-g++.exe ; |