Advertisement
Guest User

Untitled

a guest
May 21st, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. set( NAME ARViewer )
  2. set( VERSION 0.2 )
  3. set( TYPE APP )
  4. set( DEPENDENCIES )
  5. set( REQUIREMENTS
  6. appXml # XML configurations
  7. fwlauncher # Just to build the launcher
  8.  
  9. preferences # Start the bundle, load file location or window preferences
  10. guiQt # Start the bundle, allow dark theme
  11. visuOgre # Start the bundle, redirect Ogre's log to Sight log
  12. material # Start the bundle, load Ogre's materials
  13. ioRDActivity # Allow to use RD activity
  14. ioActivity # Allow to use activity
  15.  
  16. visuOgreQt # Allow Ogre to be displayed in QT.
  17.  
  18. arPatchMedicalData # Allow to use old data
  19. patchMedicalData # Allow to use old data
  20. rdPatchMedicalData # Allow to use old data
  21.  
  22. # Objects declaration
  23. dataReg # fwData
  24. servicesReg # fwService
  25. arDataReg # fwArData
  26.  
  27. # UI declaration/Actions
  28. gui
  29. guiQt
  30. style
  31. uiTF
  32. uiImageQt
  33.  
  34. # Actions
  35. uiIO
  36. uiPreferences
  37.  
  38. # Services
  39. syncTimeline
  40. videoTools
  41. videoOpenCV
  42. ctrlSelection
  43. ioAtoms
  44. ioVTK
  45. ioVtkGdcm
  46. ioIGTL
  47. maths
  48. opData
  49. videoQt
  50. uiTools
  51. videoCalibration
  52. orbslamTracker
  53. scene2D
  54. ctrlCamp
  55. uiVisuOgre
  56. basicRegistration
  57. registration
  58.  
  59. # Generic Scene
  60. fwRenderOgre
  61. visuOgreAdaptor
  62.  
  63. calibrationActivity
  64. arOrbSlamActivity
  65.  
  66. )
  67.  
  68. bundleParam(guiQt
  69. PARAM_LIST
  70. resource
  71. stylesheet
  72. PARAM_VALUES
  73. style-0.1/darkstyle.rcc
  74. style-0.1/darkstyle.qss
  75. ) # Allow dark theme via guiQt
  76.  
  77. bundleParam(
  78. appXml
  79. PARAM_LIST
  80. config parameters
  81. PARAM_VALUES
  82. ARViewerBase ARViewerAppBase
  83. ) # Main application's configuration to launch
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement