mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-04 18:27:36 +00:00
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})
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|