summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 3 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index f64e3c9c9a..f68e07d065 100644
--- a/SConstruct
+++ b/SConstruct
@@ -103,7 +103,9 @@ SConscript(File('src/SConscript'), variant_dir=Dir(build.build_dir), duplicate=0
# For convenience, copy the Mixxx binary out of the build directory to the
# root. Don't do it on windows because the binary can't run on its own and needs
# the DLLs present with it.
-if not build.platform_is_windows:
+if build.platform_is_osx:
+ Command("mixxx", os.path.join(build.build_dir, "Mixxx"), Copy("$TARGET", "$SOURCE"))
+elif not build.platform_is_windows:
Command("mixxx", os.path.join(build.build_dir, "mixxx"), Copy("$TARGET", "$SOURCE"))