This repository has been archived on 2026-03-28. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
eodev/application/common/CMakeLists.txt

15 lines
271 B
CMake

PROJECT(common)
SET(RESOURCES
gplot.py
ggobi.py
boxplot_eda_n_edasa.py
)
FOREACH(file ${RESOURCES})
EXECUTE_PROCESS(
COMMAND ${CMAKE_COMMAND} -E copy_if_different
${CMAKE_CURRENT_SOURCE_DIR}/${file}
${DO_BINARY_DIR}/${file}
)
ENDFOREACH(file)