Explorar o código

CMake file for the CMake support

Omkar Yadav %!s(int64=6) %!d(string=hai) anos
pai
achega
7eda4ae551
Modificáronse 1 ficheiros con 8 adicións e 0 borrados
  1. 8 0
      CMakeLists.txt

+ 8 - 0
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)