Experimenting with cmake - which claims to replace autoconf,automake,libtool and...
authorellson <devnull@localhost>
Fri, 23 Jun 2006 03:11:20 +0000 (03:11 +0000)
committerellson <devnull@localhost>
Fri, 23 Jun 2006 03:11:20 +0000 (03:11 +0000)
cmd/lefty/os/unix/.cvsignore
cmd/lefty/os/unix/CMakeLists.txt [new file with mode: 0644]
cmd/lefty/ws/.cvsignore
cmd/lefty/ws/CMakeLists.txt [new file with mode: 0644]
cmd/lefty/ws/gtk/.cvsignore [new file with mode: 0644]

index 9fb98574200a4331b9c86504fe4405a45f4d3605..2ae58179874327ff45bbbd4e581ee378e76bb16f 100644 (file)
@@ -4,3 +4,4 @@
 .libs
 Makefile
 Makefile.in
+CMakeFiles CMakeTmp CMakeFiles CMakeCache.txt cmake_install.cmake
diff --git a/cmd/lefty/os/unix/CMakeLists.txt b/cmd/lefty/os/unix/CMakeLists.txt
new file mode 100644 (file)
index 0000000..8f67135
--- /dev/null
@@ -0,0 +1,38 @@
+# $Id$ $Revision$
+## Process this file with cmake to produce Makefile
+
+INCLUDE_DIRECTORIES(
+       ${CMAKE_CURRENT_SOURCE_DIR}
+       ${CMAKE_BINARY_DIR}
+       ${CMAKE_SOURCE_DIR}/cmd/lefty
+)
+
+
+########### next target ###############
+
+SET(os_SRCS
+       io.c
+)
+
+ADD_LIBRARY(os STATIC ${os_SRCS})
+
+
+########### install files ###############
+
+
+
+
+#original Makefile.am contents follow:
+
+## $Id$ $Revision$
+### Process this file with automake to produce Makefile.in
+#
+#AM_CPPFLAGS = -I$(top_srcdir)/cmd/lefty
+#
+#if WITH_X
+#noinst_LTLIBRARIES = libos.la
+#endif
+#
+#libos_la_SOURCES = io.c
+#
+#EXTRA_DIST = $(libos_la_SOURCES)
index 9fb98574200a4331b9c86504fe4405a45f4d3605..2ae58179874327ff45bbbd4e581ee378e76bb16f 100644 (file)
@@ -4,3 +4,4 @@
 .libs
 Makefile
 Makefile.in
+CMakeFiles CMakeTmp CMakeFiles CMakeCache.txt cmake_install.cmake
diff --git a/cmd/lefty/ws/CMakeLists.txt b/cmd/lefty/ws/CMakeLists.txt
new file mode 100644 (file)
index 0000000..fd4c17d
--- /dev/null
@@ -0,0 +1,21 @@
+# $Id$ $Revision$
+## Process this file with cmake to produce Makefile
+
+ADD_SUBDIRECTORY( x11 ) 
+ADD_SUBDIRECTORY( mswin32 ) 
+ADD_SUBDIRECTORY( none ) 
+
+
+########### install files ###############
+
+
+
+
+#original Makefile.am contents follow:
+
+## $Id$ $Revision$
+### Process this file with automake to produce Makefile.in
+#
+#SUBDIRS = x11
+#
+#EXTRA_DIST = mswin32 gtk none
diff --git a/cmd/lefty/ws/gtk/.cvsignore b/cmd/lefty/ws/gtk/.cvsignore
new file mode 100644 (file)
index 0000000..4c902cf
--- /dev/null
@@ -0,0 +1,3 @@
+Makefile.in
+Makefile
+CMakeFiles CMakeTmp CMakeFiles CMakeCache.txt cmake_install.cmake