freeswitch/libs/libedit/src/CMakeLists.txt
Shane Burrell 6e2f5afa6b Cmake starting point
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11911 d0543943-73ff-0310-b7d9-9358b9ac24b2
2009-02-12 03:36:00 +00:00

26 lines
803 B
CMake

cmake_minimum_required(VERSION 2.6)
INCLUDE_DIRECTORIES(../include/ ./ )
SET ( libedit_SRCS
chared.c common.c el.c emacs.c hist.c key.c map.c parse.c
prompt.c read.c refresh.c search.c sig.c term.c tty.c vi.c
fgetln.c strlcat.c strlcpy.c unvis.c vis.c tokenizer.c
history.c filecomplete.c readline.c chared.h el.h hist.h
histedit.h key.h map.h parse.h prompt.h read.h refresh.h
search.h sig.h sys.h el_term.h tty.h vis.h filecomplete.h
editline/readline.h
)
ADD_LIBRARY(libedit STATIC ${libedit_SRCS})