From 94d7588c2045cbe76ec0287a5e92f1b4123d996f Mon Sep 17 00:00:00 2001 From: Keuin Date: Tue, 28 Dec 2021 05:37:54 +0800 Subject: Initial version. --- CMakeLists.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..67e49f9 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,7 @@ +cmake_minimum_required(VERSION 3.0) +project(netmon C) + +set(CMAKE_C_STANDARD 99) +add_compile_definitions(DEBUG) + +add_executable(netmon netmon.c logging.c logging.h) -- cgit v1.2.3