Skip to content

Commit

Permalink
Added CMake support
Browse files Browse the repository at this point in the history
  • Loading branch information
dnewman-gpsw committed Jun 6, 2017
1 parent de42b83 commit 580a4b2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# CMakeLists.txt
cmake_minimum_required (VERSION 3.8.2)
project (gpmf-parser)

set(CMAKE_SUPPRESS_REGENERATION true)
set(CMAKE_CONFIGURATION_TYPES "Debug;Release")

file(GLOB SOURCES GPMF_parser.c "demo/*.c")

add_executable(gpmf-parser ${SOURCES})

0 comments on commit 580a4b2

Please sign in to comment.