BitDHT/src/util/CMakeLists.txt
2026-08-22 13:21:59 -04:00

38 lines
1.1 KiB
CMake

# ------------------------------------------------------------------------ *\
# src/util/CMakeLists.txt
# This file is part of BitDHT
#
# Copyright (C) 2026 David Bears <dbear4q@gmail.com>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
# ------------------------------------------------------------------------ */
target_sources(${PROJECT_NAME} PRIVATE
PUBLIC FILE_SET HEADERS FILES
bdbloom.h
bdfile.h
bdnet.h
bdrandom.h
bdstring.h
bdthreads.h
PRIVATE
bdbloom.cc
bdfile.cc
bdnet.cc
bdrandom.cc
bdstring.cc
bdthreads.cc
)