~ubuntu-branches/ubuntu/jaunty/cmake/jaunty-security

« back to all changes in this revision

Viewing changes to Source/CursesDialog/form/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): A. Maitland Bottoms
  • Date: 2005-03-02 09:22:44 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050302092244-y6o9j8wr27vqcqvx
Tags: 2.0.5-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
INCLUDE_REGULAR_EXPRESSION("^.*$")
4
4
 
5
 
SOURCE_FILES(FORM_SRCS
 
5
SET(  FORM_SRCS
6
6
             fld_arg.c
7
7
             fld_attr.c
8
8
             fld_current.c
42
42
             fty_ipv4.c
43
43
             fty_num.c
44
44
             fty_regex.c
45
 
             )
 
45
   )
46
46
             
47
47
INCLUDE_DIRECTORIES(${CMAKE_FORM_SOURCE_DIR})
48
 
ADD_LIBRARY(cmForm FORM_SRCS)
 
 
b'\\ No newline at end of file'
 
48
ADD_LIBRARY(cmForm ${FORM_SRCS} )
 
49
TARGET_LINK_LIBRARIES(cmForm ${CURSES_LIBRARY})
 
50
IF(CURSES_EXTRA_LIBRARY)
 
51
  TARGET_LINK_LIBRARIES(cmForm ${CURSES_EXTRA_LIBRARY})
 
52
ENDIF(CURSES_EXTRA_LIBRARY)