diff --git a/interface/external/gverb/CMakeLists.txt b/interface/external/gverb/CMakeLists.txt new file mode 100644 index 0000000000..7913348e1d --- /dev/null +++ b/interface/external/gverb/CMakeLists.txt @@ -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})