diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-04 22:09:12 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-10-04 22:14:40 +0300 |
commit | 62a426a08b7d16e58f0c906ed382aceb9bcb9aa2 (patch) | |
tree | c67921fa58b13a24d06967831ef3e4cf3e746cea /project | |
parent | Travis: lint the config (diff) | |
download | cmake-common-62a426a08b7d16e58f0c906ed382aceb9bcb9aa2.tar.gz cmake-common-62a426a08b7d16e58f0c906ed382aceb9bcb9aa2.zip |
fix build dir path on Travis/AppVeyor
I.e. it used to be just C:\projects instead of C:\projects\build on
AppVeyor.
Diffstat (limited to 'project')
-rw-r--r-- | project/ci/cmake.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project/ci/cmake.py b/project/ci/cmake.py index 10b09ef..4a58749 100644 --- a/project/ci/cmake.py +++ b/project/ci/cmake.py @@ -34,7 +34,7 @@ def build_ci(dirs, argv=None): args = _parse_args(dirs, argv) params = BuildParameters(dirs.get_src_dir(), - build_dir=dirs.get_build_dir(), + build_dir=dirs.get_cmake_dir(), install_dir=args.install_dir, platform=dirs.get_platform(), configuration=dirs.get_configuration(), |