aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-10-04 22:09:12 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-10-04 22:14:40 +0300
commit62a426a08b7d16e58f0c906ed382aceb9bcb9aa2 (patch)
treec67921fa58b13a24d06967831ef3e4cf3e746cea
parentTravis: lint the config (diff)
downloadcmake-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.
-rw-r--r--project/ci/cmake.py2
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(),