20 lines
307 B
CMake
20 lines
307 B
CMake
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
|
|
)
|