]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Cmake starting point
authorShane Burrell <shaneb@metrostat.net>
Thu, 12 Feb 2009 03:36:00 +0000 (03:36 +0000)
committerShane Burrell <shaneb@metrostat.net>
Thu, 12 Feb 2009 03:36:00 +0000 (03:36 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@11911 d0543943-73ff-0310-b7d9-9358b9ac24b2

libs/libedit/src/CMakeLists.txt [new file with mode: 0644]

diff --git a/libs/libedit/src/CMakeLists.txt b/libs/libedit/src/CMakeLists.txt
new file mode 100644 (file)
index 0000000..8a7fac9
--- /dev/null
@@ -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})
+
+
+
+
+
+
+