initial commit
This commit is contained in:
18
CMakeLists.txt
Normal file
18
CMakeLists.txt
Normal file
@@ -0,0 +1,18 @@
|
||||
cmake_minimum_required(VERSION 3.21)
|
||||
|
||||
project(LAB16 C)
|
||||
|
||||
set(CMAKE_C_STANDARD 23)
|
||||
set(CMAKE_C_STANDARD_REQUIRED ON)
|
||||
|
||||
add_executable(LAB16
|
||||
src/main.c
|
||||
src/LAB1.c
|
||||
src/LAB2.c
|
||||
src/LAB3.c
|
||||
src/LAB4.c
|
||||
src/LAB5.c
|
||||
src/LAB6.c
|
||||
)
|
||||
|
||||
target_include_directories(LAB16 PRIVATE include)
|
||||
Reference in New Issue
Block a user