File: CMakeLists.txt

package info (click to toggle)
dart 0.20061109-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, lenny
  • size: 5,668 kB
  • ctags: 247
  • sloc: tcl: 5,652; perl: 256; python: 141; cpp: 79; makefile: 68; sh: 36
file content (23 lines) | stat: -rw-r--r-- 271 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# Lib files
#

SET(Common_SRCS
  dtcFoo.cxx
)

INCLUDE_DIRECTORIES(${DART_TEST_SOURCE_DIR}/Common)
ADD_LIBRARY(dtCommon ${Common_SRCS})

LINK_LIBRARIES(
  dtCommon
)

#
# Testing
#

IF(BUILD_TESTING)
  SUBDIRS(Testing)
  SUBDIR_DEPENDS(Testing .)
ENDIF (BUILD_TESTING)