diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-03-30 13:11:13 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-03-30 17:57:52 +0300 |
commit | 913924e0e931be9d30405f88b2dd26852a6b4625 (patch) | |
tree | ca407b72e6f46f47deb734c817905a0080da542c /.ci | |
parent | project.cmake: support --mingw for Travis/AppVeyor (diff) | |
download | cmake-common-913924e0e931be9d30405f88b2dd26852a6b4625.tar.gz cmake-common-913924e0e931be9d30405f88b2dd26852a6b4625.zip |
Makefile: more explicit requirements
Diffstat (limited to '.ci')
-rw-r--r-- | .ci/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.ci/Makefile b/.ci/Makefile index 9196755..d059fb9 100644 --- a/.ci/Makefile +++ b/.ci/Makefile @@ -183,7 +183,7 @@ boost/58/download: echo/boost/58/build .PHONY: boost/58/build boost/58/build: - "$(python)" -m project.boost.build --configuration Debug --platform x86 --link static -- ./boost_1_58_0 --with-filesystem --with-program_options + "$(python)" -m project.boost.build --platform x86 --configuration Debug --link static -- ./boost_1_58_0 --with-filesystem --with-program_options .PHONY: boost/58/ls boost/58/ls: echo/boost/58/ls @@ -220,7 +220,7 @@ boost/72/download: echo/boost/72/build .PHONY: boost/72/build boost/72/build: - "$(python)" -m project.boost.build --platform x86 x64 --link shared -- ./boost_1_72_0 --with-filesystem --with-program_options + "$(python)" -m project.boost.build --platform x86 x64 --configuration Debug Release --link shared -- ./boost_1_72_0 --with-filesystem --with-program_options .PHONY: boost/72/ls boost/72/ls: echo/boost/72/ls @@ -251,7 +251,7 @@ boost/72: boost/72/download boost/72/build boost/72/ls boost/72/exe echo/boost/7 # Boost 1.65.0: # * download to $HOME (on Travis), C:\projects (on AppVeyor), -# * x64, MinSizeRel (= Release), static & shared libraries. +# * x64, MinSizeRel (= Release), static libraries only. # examples/boost: # * x64/MinSizeRel build (set in .travis.yml and .appveyor.yml). |