diff options
author | mlaurent <mlaurent@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2006-03-10 11:11:07 +0000 |
---|---|---|
committer | mlaurent <mlaurent@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2006-03-10 11:11:07 +0000 |
commit | 44b428b08a2183ed08fa3d12ac7c2764c73293ff (patch) | |
tree | 05dd521d6fcc4dc62d19ae28bcfcbe4d294ea93b | |
parent | 36bf968ef4804eebb002f7024a0d92e9d337ea92 (diff) | |
download | libvncserver-44b428b08a2183ed08fa3d12ac7c2764c73293ff.zip libvncserver-44b428b08a2183ed08fa3d12ac7c2764c73293ff.tar.gz |
Add cmake support
git-svn-id: svn://anonsvn.kde.org/home/kde/trunk/KDE/kdenetwork/krfb/libvncserver@517205 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
-rw-r--r-- | CMakeLists.txt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..dff5329 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,31 @@ +kde4_header() + +include_directories( ${KDE4_INCLUDE_DIR} ${QT_INCLUDES} ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR} ) + + +########### next target ############### + + +########### install files ############### + + +kde4_footer() + + + +#original Makefile.am contents follow: + +#INCLUDES = $(all_includes) +# +#noinst_LTLIBRARIES = libvncserver.la +# +#libvncserver_la_SOURCES = main.c rfbserver.c sraRegion.c auth.c sockets.c \ +# stats.c corre.c hextile.c rre.c translate.c cutpaste.c \ +# zlib.c tight.c httpd.c cursor.c font.c \ +# draw.c selbox.c d3des.c vncauth.c cargs.c +# +#EXTRA_DIST = CHANGES COPYING README TODO +# +#AM_CPPFLAGS = -DHAVE_PTHREADS -DALLOW24BPP +#AM_CFLAGS = -Wno-unused +# |