diff options
Diffstat (limited to 'muse2/share/instruments')
-rw-r--r-- | muse2/share/instruments/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/muse2/share/instruments/CMakeLists.txt b/muse2/share/instruments/CMakeLists.txt index ec1e45dd..5338d7b3 100644 --- a/muse2/share/instruments/CMakeLists.txt +++ b/muse2/share/instruments/CMakeLists.txt @@ -18,5 +18,9 @@ # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. #============================================================================= -install_files( /${SHARE_INSTALL_PREFIX}/${MusE_INSTALL_NAME}/instruments .*\\.idf ) +file (GLOB instruments_files *.idf) + +install( FILES ${instruments_files} + DESTINATION ${MusE_SHARE_DIR}/instruments + ) |