Added initial project files
yeet
This commit is contained in:
34
CMakeLists.txt
Normal file
34
CMakeLists.txt
Normal 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
|
||||
)
|
||||
Reference in New Issue
Block a user