CMake build system for Windows
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4171 3789f03b-4d11-0410-bbf8-ca57d06f2519
diff --git a/common/os/CMakeLists.txt b/common/os/CMakeLists.txt
new file mode 100644
index 0000000..bbeec50
--- /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 5e37290..ed98579 100644
--- a/common/os/Makefile.am
+++ b/common/os/Makefile.am
@@ -6,3 +6,4 @@
libos_la_CPPFLAGS = -I$(top_srcdir)/common
+EXTRA_DIST = CMakeLists.txt