File: CMakeLists.txt

package info (click to toggle)
sight 25.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 42,180 kB
  • sloc: cpp: 289,476; xml: 17,257; ansic: 9,878; python: 1,379; sh: 144; makefile: 33
file content (36 lines) | stat: -rw-r--r-- 928 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
sight_add_target(ex_dump TYPE APP)

add_dependencies(
    ex_dump
    sightrun
    module_app
    module_ui
    module_ui_qt
    data
    module_service
    module_ui
    module_ui_icons
    module_io_itk
    module_io_vtk
    module_io_dicom
    module_io_matrix
    module_io_session
    module_memory
    activity_viz_negato
    module_io_activity
    module_debug
    module_ui_debug
)

# Set the reading mode to "lazy", so the buffers will only be read in
# module_memory when they are used.
module_param(module_memory PARAM_LIST loading_mode PARAM_VALUES lazy)

# Allow dark theme via module_ui_qt
module_param(
    module_ui_qt PARAM_LIST resource stylesheet PARAM_VALUES sight::module::ui::qt/flatdark.rcc
                                                             sight::module::ui::qt/flatdark.qss
)

# Main application's configuration to launch
module_param(module_app PARAM_LIST config PARAM_VALUES ExDump_AppCfg)