Skip to content

Commit d557e2b

Browse files
authored
[libc][NFC] Fix missing header in CMakelists.txt (#65960)
1 parent d529943 commit d557e2b

File tree

1 file changed

+50
-0
lines changed

1 file changed

+50
-0
lines changed

libc/src/__support/CPP/CMakeLists.txt

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,62 @@ add_header_library(
9595
type_traits
9696
HDRS
9797
type_traits.h
98+
type_traits/add_lvalue_reference.h
99+
type_traits/add_pointer.h
100+
type_traits/add_rvalue_reference.h
101+
type_traits/bool_constant.h
102+
type_traits/conditional.h
103+
type_traits/decay.h
104+
type_traits/enable_if.h
105+
type_traits/false_type.h
106+
type_traits/integral_constant.h
107+
type_traits/is_arithmetic.h
108+
type_traits/is_array.h
109+
type_traits/is_base_of.h
110+
type_traits/is_class.h
111+
type_traits/is_const.h
112+
type_traits/is_convertible.h
113+
type_traits/is_destructible.h
114+
type_traits/is_enum.h
115+
type_traits/is_floating_point.h
116+
type_traits/is_function.h
117+
type_traits/is_integral.h
118+
type_traits/is_lvalue_reference.h
119+
type_traits/is_member_pointer.h
120+
type_traits/is_null_pointer.h
121+
type_traits/is_pointer.h
122+
type_traits/is_reference.h
123+
type_traits/is_rvalue_reference.h
124+
type_traits/is_same.h
125+
type_traits/is_scalar.h
126+
type_traits/is_signed.h
127+
type_traits/is_trivially_constructible.h
128+
type_traits/is_trivially_copyable.h
129+
type_traits/is_trivially_destructible.h
130+
type_traits/is_union.h
131+
type_traits/is_unsigned.h
132+
type_traits/is_void.h
133+
type_traits/make_signed.h
134+
type_traits/make_unsigned.h
135+
type_traits/remove_all_extents.h
136+
type_traits/remove_cv.h
137+
type_traits/remove_cvref.h
138+
type_traits/remove_extent.h
139+
type_traits/remove_reference.h
140+
type_traits/true_type.h
141+
type_traits/type_identity.h
142+
type_traits/void_t.h
98143
)
99144

100145
add_header_library(
101146
utility
102147
HDRS
103148
utility.h
149+
utility/declval.h
150+
utility/forward.h
151+
utility/in_place.h
152+
utility/integer_sequence.h
153+
utility/move.h
104154
)
105155

106156
add_header_library(

0 commit comments

Comments
 (0)