summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorBe <be@mixxx.org>2019-01-06 10:40:02 -0600
committerBe <be@mixxx.org>2019-01-06 11:02:56 -0600
commit4257db41cccd9f5e0f1730aea86edbb1be240170 (patch)
tree80b030aa3ffcb664c4e1a4c101d1d6f621e31a7f /build
parent603f5e5ee910b146f0d3d0a00af7acd5a5cdd291 (diff)
move EngineControls to their own folder
Diffstat (limited to 'build')
-rw-r--r--build/depends.py17
-rw-r--r--build/features.py2
2 files changed, 9 insertions, 10 deletions
diff --git a/build/depends.py b/build/depends.py
index 678c253a67..516edc4362 100644
--- a/build/depends.py
+++ b/build/depends.py
@@ -818,16 +818,15 @@ class MixxxCore(Feature):
"src/engine/enginedeck.cpp",
"src/engine/engineaux.cpp",
"src/engine/channelmixer_autogen.cpp",
-
- "src/engine/enginecontrol.cpp",
- "src/engine/ratecontrol.cpp",
"src/engine/positionscratchcontroller.cpp",
- "src/engine/loopingcontrol.cpp",
- "src/engine/bpmcontrol.cpp",
- "src/engine/keycontrol.cpp",
- "src/engine/cuecontrol.cpp",
- "src/engine/quantizecontrol.cpp",
- "src/engine/clockcontrol.cpp",
+ "src/engine/controls/bpmcontrol.cpp",
+ "src/engine/controls/clockcontrol.cpp",
+ "src/engine/controls/cuecontrol.cpp",
+ "src/engine/controls/enginecontrol.cpp",
+ "src/engine/controls/keycontrol.cpp",
+ "src/engine/controls/loopingcontrol.cpp",
+ "src/engine/controls/quantizecontrol.cpp",
+ "src/engine/controls/ratecontrol.cpp",
"src/engine/readaheadmanager.cpp",
"src/engine/enginetalkoverducking.cpp",
"src/engine/cachingreader.cpp",
diff --git a/build/features.py b/build/features.py
index 399ce035d3..48060fcd5f 100644
--- a/build/features.py
+++ b/build/features.py
@@ -318,7 +318,7 @@ class VinylControl(Feature):
'src/vinylcontrol/vinylcontrolmanager.cpp',
'src/vinylcontrol/vinylcontrolprocessor.cpp',
'src/vinylcontrol/steadypitch.cpp',
- 'src/engine/vinylcontrolcontrol.cpp', ]
+ 'src/engine/controls/vinylcontrolcontrol.cpp', ]
if build.platform_is_windows:
sources.append("lib/xwax/timecoder_win32.cpp")
sources.append("lib/xwax/lut_win32.cpp")