From 62a426a08b7d16e58f0c906ed382aceb9bcb9aa2 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Sun, 4 Oct 2020 22:09:12 +0300 Subject: fix build dir path on Travis/AppVeyor I.e. it used to be just C:\projects instead of C:\projects\build on AppVeyor. --- project/ci/cmake.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'project') 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(), -- cgit v1.2.3