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-- 490 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(FourViewsAndTracking)
  
SET(FourViewsAndTracking_GUI_SRCS
  FourViewsAndTrackingGUI.fl
  )
  
SET(FourViewsAndTracking_SRCS
  FourViewsAndTracking.cxx
  )


INCLUDE_DIRECTORIES(
  ${FourViewsAndTracking_SOURCE_DIR}
  ${FourViewsAndTracking_BINARY_DIR}
  )

FLTK_WRAP_UI(FourViewsAndTracking ${FourViewsAndTracking_GUI_SRCS})
ADD_EXECUTABLE(FourViewsAndTracking ${FourViewsAndTracking_FLTK_UI_SRCS} ${FourViewsAndTracking_SRCS})
TARGET_LINK_LIBRARIES(FourViewsAndTracking IGSTK)