Regenerate ya.make to prepare for #10678

This commit is contained in:
Alexey Milovidov 2020-05-31 17:24:01 +03:00
parent 3de876b2bc
commit 26395709a1
2 changed files with 14 additions and 1 deletions

View File

@ -13,8 +13,8 @@ SRCS(
DataTypeCustomSimpleAggregateFunction.cpp
DataTypeCustomSimpleTextSerialization.cpp
DataTypeDate.cpp
DataTypeDateTime.cpp
DataTypeDateTime64.cpp
DataTypeDateTime.cpp
DataTypeDecimalBase.cpp
DataTypeEnum.cpp
DataTypeFactory.cpp
@ -36,6 +36,7 @@ SRCS(
getMostSubtype.cpp
IDataType.cpp
NestedUtils.cpp
)
END()

12
src/DataTypes/ya.make.in Normal file
View File

@ -0,0 +1,12 @@
LIBRARY()
PEERDIR(
clickhouse/src/Common
clickhouse/src/Formats
)
SRCS(
<? find . -name '*.cpp' | grep -v -F tests | sed 's/^\.\// /' | sort ?>
)
END()