Skip to content
This repository has been archived by the owner on May 3, 2019. It is now read-only.

Commit

Permalink
Fix copy plugins command on unix
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinDuquesnoy committed Sep 11, 2016
1 parent 5eae3ef commit 713d8e8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion mellowplayer.pro
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,11 @@ win32 {
}

# copy plugins to build directory
copy_plugins.commands = $(COPY_DIR) \"$$PWD/plugins\" \"$$OUT_PWD\plugins\"
win32 {
copy_plugins.commands = $(COPY_DIR) \"$$PWD/plugins\" \"$$OUT_PWD\plugins\"
} else {
copy_plugins.commands = $(COPY_DIR) $$PWD/plugins $$OUT_PWD/plugins
}
first.depends = $(first) copy_plugins
export(first.depends)
export(copy_plugins.commands)
Expand Down

0 comments on commit 713d8e8

Please sign in to comment.