File: CMakeLists.txt

package info (click to toggle)
igstk 4.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 36,940 kB
  • ctags: 6,895
  • sloc: cpp: 70,958; makefile: 99; xml: 70
file content (22 lines) | stat: -rw-r--r-- 360 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
PROJECT(Tools)  
  
SET(Tools_SRCS
  igstkPathPlanIO.cxx
  igstkPathPlanIO.h
  igstkPathPlan.cxx
  igstkPathPlan.h
  igstkFiducialsPlanIO.cxx
  igstkFiducialsPlanIO.h
  igstkFiducialsPlan.cxx
  igstkFiducialsPlan.h
)
  
INCLUDE_DIRECTORIES(
  ${Tools_SOURCE_DIR}
  ${Tools_BINARY_DIR}
  )

ADD_LIBRARY(Tools ${Tools_SRCS})
TARGET_LINK_LIBRARIES(Tools IGSTK)