From 54c2a13447914664fc78e1ab19ea717630873998 Mon Sep 17 00:00:00 2001 From: PancakeTAS Date: Fri, 12 Jun 2026 13:21:58 +0200 Subject: Initial commit --- CMakeLists.txt | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..d666efb --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,15 @@ +cmake_minimum_required(VERSION 3.10) + +project(mpu + DESCRIPTION "Multipath UDP across two constant connections (IPv4-only)" + VERSION 1.0.0 + LANGUAGES C) + +include(cmake/Diagnostics.cmake) + +add_executable(mpu + "src/main.c") + +set_target_properties(mpu PROPERTIES + C_STANDARD_REQUIRED ON + C_STANDARD 23) -- cgit v1.3.1