2017-09-27 05:37:27 +02:00
|
|
|
#
|
|
|
|
# Copyright 2017 The Abseil Authors.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
2019-03-08 16:27:53 +01:00
|
|
|
# https://www.apache.org/licenses/LICENSE-2.0
|
2017-09-27 05:37:27 +02:00
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
|
|
|
|
add_subdirectory(base)
|
|
|
|
add_subdirectory(algorithm)
|
|
|
|
add_subdirectory(container)
|
|
|
|
add_subdirectory(debugging)
|
2019-05-07 21:56:42 +02:00
|
|
|
add_subdirectory(flags)
|
2020-01-31 19:09:12 +01:00
|
|
|
add_subdirectory(functional)
|
2018-09-27 21:24:54 +02:00
|
|
|
add_subdirectory(hash)
|
2017-09-27 05:37:27 +02:00
|
|
|
add_subdirectory(memory)
|
|
|
|
add_subdirectory(meta)
|
|
|
|
add_subdirectory(numeric)
|
2019-08-05 20:32:04 +02:00
|
|
|
add_subdirectory(random)
|
2020-02-25 17:48:42 +01:00
|
|
|
add_subdirectory(status)
|
2017-09-27 05:37:27 +02:00
|
|
|
add_subdirectory(strings)
|
|
|
|
add_subdirectory(synchronization)
|
|
|
|
add_subdirectory(time)
|
|
|
|
add_subdirectory(types)
|
|
|
|
add_subdirectory(utility)
|
2020-01-28 20:50:11 +01:00
|
|
|
|
|
|
|
if (${ABSL_BUILD_DLL})
|
|
|
|
absl_make_dll()
|
|
|
|
endif()
|