mirror of https://github.com/t1meshift/os_labs.git
38 lines
872 B
CMake
38 lines
872 B
CMake
cmake_minimum_required(VERSION 3.16)
|
|
set(CMAKE_C_STANDARD 11)
|
|
|
|
# Lab name
|
|
set(LAB_NAME "lab6")
|
|
|
|
# Lab tasks
|
|
list(APPEND SOURCE_FILES
|
|
check-xor.c
|
|
check-fletcher.c
|
|
check-crc.c
|
|
create-csum.c
|
|
check-csum.c
|
|
)
|
|
list(APPEND NON_COMPILABLE_SRC
|
|
.execme
|
|
)
|
|
|
|
### Here goes the template
|
|
|
|
project("${LAB_NAME}" C)
|
|
|
|
add_custom_target("${LAB_NAME}")
|
|
|
|
foreach (file IN LISTS SOURCE_FILES)
|
|
add_executable("${LAB_NAME}_${file}_run" "${file}")
|
|
add_dependencies("${LAB_NAME}" "${LAB_NAME}_${file}_run")
|
|
endforeach ()
|
|
|
|
foreach (file IN LISTS NON_COMPILABLE_SRC)
|
|
add_custom_command(
|
|
TARGET "${LAB_NAME}" POST_BUILD
|
|
DEPENDS "${file}"
|
|
COMMAND ${CMAKE_COMMAND} -E copy
|
|
"${CMAKE_CURRENT_SOURCE_DIR}/${file}"
|
|
"${CMAKE_CURRENT_BINARY_DIR}/${file}"
|
|
)
|
|
endforeach () |