diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6809f4beb3a5f32604d01f9ff9ec42593af74b1f..87e1531e235a66f559b918e6867a49b5e5a5a1c4 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -82,6 +82,12 @@ Generate_Project:
             [refactor/plugin_separation@RWTHVRToolkit]='https://git-ce.rwth-aachen.de/vr-vis/VR-Group/unreal-development/plugins/rwth-vr-toolkit.git'
             )"
 
+Generate_Project_Without_Toolkit:
+    extends: Generate_Project
+    variables:
+        GEN_DEPENDENCIES: "(
+            [master@UnrealDTrackPlugin]='https://github.com/VRGroupRWTH/UnrealDTrackPlugin.git'
+            )"
 
 Build_Windows:
     rules: 
@@ -124,6 +130,12 @@ Build_Linux:
         - job: "Generate_Project"
           artifacts: true
 
+Build_Linux_Without_Toolkit:
+    extends: Build_Linux
+    needs:
+        - job: "Generate_Project_Without_Toolkit"
+          artifacts: true
+
 Deploy_Windows:
     rules: 
       - if: $CI_PIPELINE_SOURCE == "web"