Cmake starting point

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11911 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Shane Burrell 2009-02-12 03:36:00 +00:00
parent a818ec8837
commit 6e2f5afa6b
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
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})