From 6ef5e7a34af8d88d555ae22fa6038930cd9b036e Mon Sep 17 00:00:00 2001
From: Maurice <zimmnau@ilr.rwth-aachen.de>
Date: Tue, 25 Feb 2025 14:32:52 +0100
Subject: [PATCH] Set binary output directory of design_evaluator

---
 design_evaluator/CMakeLists.txt | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/design_evaluator/CMakeLists.txt b/design_evaluator/CMakeLists.txt
index bff3aaf3..1f4ec2bf 100644
--- a/design_evaluator/CMakeLists.txt
+++ b/design_evaluator/CMakeLists.txt
@@ -41,3 +41,8 @@ set(MODULE_NAME design_evaluator)
 add_executable(${MODULE_NAME}
 	src/main.cpp
 )
+
+# Set the location where the executable will be placed to the current source directory
+set_target_properties(${MODULE_NAME} PROPERTIES
+    RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
+)
-- 
GitLab