From 13f9f1898701610f8997a5730175b0c9c6fd49f3 Mon Sep 17 00:00:00 2001 From: Pavel Melkozerov Date: Tue, 23 Oct 2018 00:51:46 +0300 Subject: [PATCH] Simble CMake build support --- CMakeLists.txt | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..78de16e --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,16 @@ +cmake_minimum_required (VERSION 2.6) +project (updiprog) +set(SOURCES + app.c + com.c + devices.c + ihex.c + link.c + log.c + main.c + nvm.c + phy.c + progress.c + sleep.c +) +add_executable (updiprog ${SOURCES})