Use same location for StaConfig.hh output as in cmake.
CMakeLists.txt:393 puts the output in include/sta/StaConfig.hh; do the same for bazel. Signed-off-by: Henner Zeller <h.zeller@acm.org>
This commit is contained in:
parent
d8a87863aa
commit
6e37350994
3
BUILD
3
BUILD
|
|
@ -177,8 +177,9 @@ tcl_encode_sta(
|
||||||
genrule(
|
genrule(
|
||||||
name = "StaConfig",
|
name = "StaConfig",
|
||||||
srcs = [],
|
srcs = [],
|
||||||
outs = ["util/StaConfig.hh"],
|
outs = ["include/sta/StaConfig.hh"],
|
||||||
cmd = """echo -e '
|
cmd = """echo -e '
|
||||||
|
#pragma once
|
||||||
#define STA_VERSION "2.7.0"
|
#define STA_VERSION "2.7.0"
|
||||||
#define STA_GIT_SHA1 "f21d4a3878e2531e3af4930818d9b5968aad9416"
|
#define STA_GIT_SHA1 "f21d4a3878e2531e3af4930818d9b5968aad9416"
|
||||||
#define SSTA 0
|
#define SSTA 0
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue