diff options
author | iaz1607 <iaz1607@yandex-team.com> | 2023-12-08 13:17:49 +0300 |
---|---|---|
committer | iaz1607 <iaz1607@yandex-team.com> | 2023-12-08 14:23:31 +0300 |
commit | 660fc48d95073c82db87a86342e836f6c98bd40e (patch) | |
tree | 3613b12c4b14cbb6b591169f3ff594102eace972 | |
parent | 90c0a74f0d36e1c054ff86f316e4850dda778606 (diff) | |
download | ydb-660fc48d95073c82db87a86342e836f6c98bd40e.tar.gz |
host_os.ya.make.inc support
-rw-r--r-- | build/platform/test_tool/ya.make | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/build/platform/test_tool/ya.make b/build/platform/test_tool/ya.make index 44371a0ac7..4394136e14 100644 --- a/build/platform/test_tool/ya.make +++ b/build/platform/test_tool/ya.make @@ -10,7 +10,13 @@ ENDIF() IF (TEST_TOOL3_HOST_LOCAL) MESSAGE(WARNING Host test tool3 $TEST_TOOL3_HOST_LOCAL will be used) ENDIF() -INCLUDE(host.ya.make.inc) + +IF (OPENSOURCE AND USE_OPENSOURCE_TEST_TOOL) + INCLUDE(host_os.ya.make.inc) +ELSE() + INCLUDE(host.ya.make.inc) +ENDIF() + IF (TEST_TOOL_TARGET_LOCAL) MESSAGE(WARNING Target test tool $TEST_TOOL_TARGET_LOCAL will be used) ENDIF() |