Add "include" folder for project’s header files // Resolve issue #1107

This commit is contained in:
Ivan Kravets
2017-12-14 22:02:41 +02:00
parent 0bd103a46d
commit ca8bc3819f
5 changed files with 17 additions and 3 deletions

View File

@@ -296,6 +296,11 @@ def get_projectsrc_dir():
return get_project_optional_dir("src_dir", join(get_project_dir(), "src"))
def get_projectinclude_dir():
return get_project_optional_dir("include_dir",
join(get_project_dir(), "include"))
def get_projecttest_dir():
return get_project_optional_dir("test_dir", join(get_project_dir(),
"test"))