From 7eda4ae5511f7270e148823965ec030b101459e9 Mon Sep 17 00:00:00 2001 From: Omkar Yadav Date: Fri, 22 Mar 2019 23:54:51 +0530 Subject: [PATCH] CMake file for the CMake support --- CMakeLists.txt | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..f657507 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,8 @@ +cmake_minimum_required(VERSION 3.3) + +project(minmea) + +set(core_SRCS minmea.c minmea.h) +add_library(core ${core_SRCS}) +add_executable(exe example.c) +target_link_libraries(exe core)