Gverb library CMakeLists

This commit is contained in:
Atlante45 2014-10-22 11:35:51 -07:00
parent e9d3729238
commit 1739cf019d

11
interface/external/gverb/CMakeLists.txt vendored Normal file
View file

@ -0,0 +1,11 @@
cmake_minimum_required(VERSION 2.8)
set(TARGET_NAME gverb)
project(${TARGET_NAME})
# grab the implementation and header files
file(GLOB GVERB_SRCS src/*.c)
include_directories(include)
add_library(${TARGET_NAME} ${GVERB_SRCS})