File size: 353 Bytes
985c397
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# SPDX-License-Identifier: LGPL-2.1-or-later

SET(PlotMain_SRCS
    Plot.py
)
SOURCE_GROUP("" FILES ${PlotMain_SRCS})

SET(all_files ${PlotMain_SRCS})

ADD_CUSTOM_TARGET(Plot ALL
    SOURCES ${all_files}
)

fc_copy_sources(Plot "${CMAKE_BINARY_DIR}/Mod/Plot" ${all_files})

INSTALL(
    FILES
        ${PlotMain_SRCS}
    DESTINATION
        Mod/Plot
)