From 1ad43f867bda5a9c0061295989f6c38b5226b512 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Sun, 20 Oct 2024 23:11:08 -0600 Subject: import dhcp from ioLibrary --- libdhcp/CMakeLists.txt | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 libdhcp/CMakeLists.txt (limited to 'libdhcp/CMakeLists.txt') diff --git a/libdhcp/CMakeLists.txt b/libdhcp/CMakeLists.txt new file mode 100644 index 0000000..e525191 --- /dev/null +++ b/libdhcp/CMakeLists.txt @@ -0,0 +1,13 @@ +# libdhcp/CMakeLists.txt - TODO +# +# Copyright (C) 2024 Luke T. Shumaker +# SPDX-Licence-Identifier: AGPL-3.0-or-later + +add_library(libdhcp INTERFACE) +target_include_directories(libdhcp SYSTEM INTERFACE ${CMAKE_CURRENT_SOURCE_DIR}/include) +target_sources(libdhcp INTERFACE + dhcp.c +) +target_link_libraries(libdhcp INTERFACE + libmisc +) -- cgit v1.2.3-2-g168b