From 3bdbb9874f73d024f43893626dbe61a32c9c799b Mon Sep 17 00:00:00 2001 From: "Suren A. Chilingaryan" Date: Fri, 16 Jul 2010 09:45:04 +0200 Subject: CMake scripts to build under Windows --- src/CMakeLists.txt | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/CMakeLists.txt (limited to 'src') diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt new file mode 100644 index 0000000..29c8422 --- /dev/null +++ b/src/CMakeLists.txt @@ -0,0 +1,17 @@ +if (NOT WIN32) + SET(BUILD_SHARED_LIBS ON) +endif (NOT WIN32) + +SET(CMAKE_INCLUDE_CURRENT_DIR ON) + +SET(HEADERS + librcd.h +) + +SET(rcd_SRCS + librcd.c + russian_table.h + ${HEADERS} +) + +ADD_LIBRARY(rcd ${rcd_SRCS}) -- cgit v1.2.3