blob: 2758d11b7a7107e0577879de7193e4c620af3aeb (
plain)
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
|
########################################################################
# Install rules
########################################################################
include(GrPython)
GR_PYTHON_INSTALL(
FILES
__init__.py
DESTINATION ${GR_PYTHON_DIR}/gras/query
COMPONENT ${GRAS_COMP_PYTHON}
)
INSTALL(
FILES
main.html
main.js
utils.js
chart_factory.js
chart_overhead_compare.js
chart_overall_throughput.js
chart_handler_breakdown.js
chart_port_counters.js
chart_global_counters.js
main.css
DESTINATION ${GR_PYTHON_DIR}/gras/query
COMPONENT ${GRAS_COMP_PYTHON}
)
|