forked from Kitware/vivia
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvgExport.cmake
More file actions
43 lines (40 loc) · 1.51 KB
/
vgExport.cmake
File metadata and controls
43 lines (40 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
set(PROJECT VISGUI)
set(INCLUDE_GUARD __vgExport_h)
set(CONTENT_HEADER
"/*ckwg +5"
" * Copyright 2013 by Kitware, Inc. All Rights Reserved. Please refer to"
" * KITWARE_LICENSE.TXT for licensing information, or contact General Counsel,"
" * Kitware, Inc., 28 Corporate Drive, Clifton Park, NY 12065."
" */"
)
set(CONTENT_PRE_EXPORTS
"// Disable warning caused from static VTK and shared visgui"
"#ifdef _MSC_VER"
"# pragma warning (disable:4275) /* non-DLL-interface base class used */"
"#endif"
)
add_export(qtTestingSupport QT_TESTINGSUPPORT)
add_export(qtExtensions QTE)
add_export(qtVgCommon QTVG_COMMON)
add_export(qtVgWidgets QTVG_WIDGETS)
add_export(vgCommon VG_COMMON)
add_export(vgVideo VG_VIDEO)
add_export(vgVtkVideo VG_VTKVIDEO)
add_export(vgDataFramework VG_DATA_FRAMEWORK)
add_export(vgGuiFramework VG_GUI_FRAMEWORK)
add_export(vspData VSP_DATA)
add_export(vspSourceUtil VSP_SOURCEUTIL)
add_export(vspUserInterface VSP_USERINTERFACE)
add_export(vtkVgCore VTKVG_CORE)
add_export(vtkVgIO VTKVG_IO)
add_export(vtkVgModelView VTKVG_MODELVIEW)
add_export(vtkVgSceneGraph VTKVG_SCENEGRAPH)
add_export(vtkVgVideo VTKVG_VIDEO)
add_export(vtkVgQtUtil VTKVGQT_UTIL)
add_export(vtkVgQtSceneUtil VTKVGQT_SCENEUTIL)
add_export(vtkVgQtWidgets VTKVGQT_WIDGETS)
add_export(vtkVwCore VTKVW_CORE)
add_export(vvIO VV_IO)
add_export(vvVidtk VV_VIDTK)
add_export(vvVtkWidgets VV_VTKWIDGETS)
add_export(vvWidgets VV_WIDGETS)