]> andersk Git - libyaml.git/commitdiff
Added a basic CMake project.
authorKirill Simonov <xi@resolvent.net>
Mon, 13 Jan 2014 00:27:39 +0000 (18:27 -0600)
committerKirill Simonov <xi@resolvent.net>
Mon, 13 Jan 2014 00:27:39 +0000 (18:27 -0600)
CMakeLists.txt [new file with mode: 0644]
Makefile.am

diff --git a/CMakeLists.txt b/CMakeLists.txt
new file mode 100644 (file)
index 0000000..d30c536
--- /dev/null
@@ -0,0 +1,16 @@
+# Minimal CMake project for building a static library under Windows.
+
+cmake_minimum_required (VERSION 2.8)
+project (yaml C)
+
+set (YAML_VERSION_MAJOR 0)
+set (YAML_VERSION_MINOR 1)
+set (YAML_VERSION_PATCH 4)
+set (YAML_VERSION_STRING "${YAML_VERSION_MAJOR}.${YAML_VERSION_MINOR}.${YAML_VERSION_PATCH}")
+
+file (GLOB SRC src/*.c)
+
+include_directories (include win32)
+add_definitions (-DHAVE_CONFIG_H -DYAML_DECLARE_STATIC)
+add_library (yaml STATIC ${SRC})
+
index 4111fdb721a71b39236f7fdb16fe950a0f20810b..de2a3cd040432679ac96c97db7bf2cb46a515cba 100644 (file)
@@ -3,7 +3,7 @@
 
 SUBDIRS = include src . tests win32
 
-EXTRA_DIST = README LICENSE doc/doxygen.cfg
+EXTRA_DIST = README LICENSE CMakeLists.txt doc/doxygen.cfg
 
 pkgconfigdir = $(libdir)/pkgconfig
 pkgconfig_DATA = yaml-0.1.pc
This page took 0.038084 seconds and 5 git commands to generate.