/rusxmms/librcd

To get this branch, use:
bzr branch http://suren.me/webbzr/rusxmms/librcd

« back to all changes in this revision

Viewing changes to src/CMakeLists.txt

  • Committer: Suren A. Chilingaryan
  • Date: 2010-07-16 07:45:04 UTC
  • Revision ID: csa@dside.dyndns.org-20100716074504-kc3hwad45klghz03
CMake scripts to build under Windows

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
if (NOT WIN32)
 
2
    SET(BUILD_SHARED_LIBS ON)
 
3
endif (NOT WIN32)
 
4
 
 
5
SET(CMAKE_INCLUDE_CURRENT_DIR ON)
 
6
 
 
7
SET(HEADERS 
 
8
    librcd.h
 
9
)
 
10
 
 
11
SET(rcd_SRCS
 
12
    librcd.c
 
13
    russian_table.h
 
14
    ${HEADERS}
 
15
)
 
16
 
 
17
ADD_LIBRARY(rcd ${rcd_SRCS})