This commit is contained in:
2025-10-13 19:58:43 +02:00
parent 10c3545488
commit 9b1a8fcea9
8 changed files with 120 additions and 67 deletions

View File

@@ -4,7 +4,7 @@
# Define a custom target to run the default 'make' command
# ------------------------------------------------------------------
add_custom_target(
Week6
MinigameMenu
COMMAND ${MAKE_EXECUTABLE}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
COMMENT "Running make in the project directory..."
@@ -15,7 +15,7 @@ add_custom_target(
# Define a custom target to run 'make clean'
# ------------------------------------------------------------------
add_custom_target(
Week6Clean
Clean
COMMAND ${MAKE_EXECUTABLE} clean
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
COMMENT "Running make clean in the project directory..."
@@ -26,9 +26,9 @@ add_custom_target(
# Define a custom target to run 'make clean'
# ------------------------------------------------------------------
add_custom_target(
Week6Tarball
COMMAND ${MAKE_EXECUTABLE} tarball1
Tarball
COMMAND ${MAKE_EXECUTABLE} tarball2
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
COMMENT "Running make tarball in the project directory..."
VERBATIM
)
)