From 00d21c8d6d202375761f332084e01661241376a9 Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Mon, 18 Jan 2021 14:39:19 +0300 Subject: project.ci: --install picks the directory automatically --- project/ci/dirs.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'project/ci/dirs.py') diff --git a/project/ci/dirs.py b/project/ci/dirs.py index 5bfedda..4e61015 100644 --- a/project/ci/dirs.py +++ b/project/ci/dirs.py @@ -42,6 +42,9 @@ class Dirs(abc.ABC): def get_cmake_dir(self): return os.path.join(self.get_build_dir(), 'build') + def get_install_dir(self): + return os.path.join(self.get_build_dir(), 'install') + @abc.abstractmethod def get_cmake_args(self): pass @@ -61,7 +64,7 @@ Boost is built in {self.get_boost_dir()}. This is similar to running project.cmake.build, but auto-fills some parameters from environment variables. -The project is built in {self.get_cmake_dir()}. +The project is built in {self.get_cmake_dir()} and installed to {self.get_install_dir()}. ''' -- cgit v1.2.3