From 1b6cefe91e121c11c3194c724d980b6c8134a13a Mon Sep 17 00:00:00 2001 From: Aaditya Dhruv Date: Sun, 25 May 2025 14:47:52 -0500 Subject: init --- CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..9991ae1 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 3.16...4.0) +set(CMAKE_EXPORT_COMPILE_COMMANDS ON) +project(arpee VERSION 1.0 + DESCRIPTION "Respond to arp packets" + LANGUAGES C) + +message("Building Silph Scope...") +message("Compiler: ${CMAKE_CXX_COMPILER_ID}") + +add_subdirectory(src) -- cgit