Skip to content
Snippets Groups Projects

[cmake][bugfix] Use install(PROGRAMS...) signature to install executable scripts

Merged Dominic Kempf requested to merge feature/install-scripts-executable into master
1 file
+ 8
2
Compare changes
  • Side-by-side
  • Inline
# Install non-executable scripts
install(FILES
conf.py.in
CreateDoxyFile.cmake
envdetect.py
extract_cmake_data.py
FinalizeHeadercheck.cmake
index.rst.in
InstallFile.cmake
main77.cc.in
module_library.cc.in
pyversion.py
run-in-dune-env.sh.in
RunDoxygen.cmake
sphinx_cmake_dune.py
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/dune/cmake/scripts)
# Install executable programs
install(PROGRAMS
extract_cmake_data.py
run-in-dune-env.sh.in
DESTINATION ${CMAKE_INSTALL_DATAROOTDIR}/dune/cmake/scripts
)
Loading