aboutsummaryrefslogtreecommitdiff
path: root/src/protocol/icmp/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'src/protocol/icmp/CMakeLists.txt')
-rw-r--r--src/protocol/icmp/CMakeLists.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/protocol/icmp/CMakeLists.txt b/src/protocol/icmp/CMakeLists.txt
new file mode 100644
index 0000000..4fd374d
--- /dev/null
+++ b/src/protocol/icmp/CMakeLists.txt
@@ -0,0 +1,14 @@
+# wip, a small TCP/IP stack.
+# Copyright (C) 2025 Xavier Del Campo Romero
+#
+# This Source Code Form is subject to the terms of the Mozilla Public
+# License, v. 2.0. If a copy of the MPL was not distributed with this
+# file, You can obtain one at https://mozilla.org/MPL/2.0/.
+
+target_sources(${PROJECT_NAME} PRIVATE
+ alloc.c
+ free.c
+ rx.c
+ start.c
+ tx.c
+)