[Freeswitch-svn] [commit] r11911 - freeswitch/trunk/libs/libedit/src

FreeSWITCH SVN shaneb at freeswitch.org
Wed Feb 11 19:36:00 PST 2009


Author: shaneb
Date: Wed Feb 11 21:36:00 2009
New Revision: 11911

Log:
Cmake starting point

Added:
   freeswitch/trunk/libs/libedit/src/CMakeLists.txt

Added: freeswitch/trunk/libs/libedit/src/CMakeLists.txt
==============================================================================
--- (empty file)
+++ freeswitch/trunk/libs/libedit/src/CMakeLists.txt	Wed Feb 11 21:36:00 2009
@@ -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})
+
+
+
+
+
+
+



More information about the Freeswitch-svn mailing list