CMake file for the CMake support

This commit is contained in:
Omkar Yadav 2019-03-22 23:54:51 +05:30 committed by Kosma Moczek
parent ce0fb1d6da
commit 7eda4ae551

8
CMakeLists.txt Normal file
View File

@ -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)