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)