forked from Mirrors/freeswitch
14 lines
145 B
CMake
14 lines
145 B
CMake
|
cmake_minimum_required(VERSION 2.6)
|
||
|
|
||
|
INCLUDE_DIRECTORIES(include/)
|
||
|
|
||
|
SET ( stfu_SRCS stfu.c stfu.h)
|
||
|
ADD_LIBRARY(stfu STATIC ${stfu_SRCS})
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|