Added initial project files

yeet
This commit is contained in:
snapshot112
2025-10-13 15:29:56 +02:00
committed by GitHub
parent bf1a906682
commit 10c3545488
7 changed files with 759 additions and 0 deletions

34
CMakeLists.txt Normal file
View File

@@ -0,0 +1,34 @@
cmake_minimum_required()
# ------------------------------------------------------------------
# Define a custom target to run the default 'make' command
# ------------------------------------------------------------------
add_custom_target(
Week6
COMMAND ${MAKE_EXECUTABLE}
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
COMMENT "Running make in the project directory..."
VERBATIM
)
# ------------------------------------------------------------------
# Define a custom target to run 'make clean'
# ------------------------------------------------------------------
add_custom_target(
Week6Clean
COMMAND ${MAKE_EXECUTABLE} clean
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
COMMENT "Running make clean in the project directory..."
VERBATIM
)
# ------------------------------------------------------------------
# Define a custom target to run 'make clean'
# ------------------------------------------------------------------
add_custom_target(
Week6Tarball
COMMAND ${MAKE_EXECUTABLE} tarball1
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
COMMENT "Running make tarball in the project directory..."
VERBATIM
)