summaryrefslogtreecommitdiffstats
path: root/common/os
diff options
context:
space:
mode:
authorDRC <dcommander@users.sourceforge.net>2010-10-27 07:20:27 +0000
committerDRC <dcommander@users.sourceforge.net>2010-10-27 07:20:27 +0000
commit180c0167b41bfcbfa33cd6a145ee0dc7b62505b2 (patch)
treeef4e2b196de5f2d3889a6a2fa98d4968eea9be6e /common/os
parent7d5d536b73fb70a91a9e88a9bbcb75660caa695c (diff)
downloadtigervnc-180c0167b41bfcbfa33cd6a145ee0dc7b62505b2.tar.gz
tigervnc-180c0167b41bfcbfa33cd6a145ee0dc7b62505b2.zip
CMake build system for Windows
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4171 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'common/os')
-rw-r--r--common/os/CMakeLists.txt5
-rw-r--r--common/os/Makefile.am1
2 files changed, 6 insertions, 0 deletions
diff --git a/common/os/CMakeLists.txt b/common/os/CMakeLists.txt
new file mode 100644
index 00000000..bbeec501
--- /dev/null
+++ b/common/os/CMakeLists.txt
@@ -0,0 +1,5 @@
+include_directories(${CMAKE_SOURCE_DIR}/common)
+
+add_library(os STATIC
+ print.c
+ net.c)
diff --git a/common/os/Makefile.am b/common/os/Makefile.am
index 5e372906..ed98579d 100644
--- a/common/os/Makefile.am
+++ b/common/os/Makefile.am
@@ -6,3 +6,4 @@ libos_la_SOURCES = $(HDRS) print.c net.c
libos_la_CPPFLAGS = -I$(top_srcdir)/common
+EXTRA_DIST = CMakeLists.txt