Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions 3/CMakeLists.txt

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Здесь пустой файл

Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Устанавливаем минимальную версию CMake
cmake_minimum_required(VERSION 3.25)
# Указываем название проекта и используемый язык(и)
set(CMAKE_C_STANDARD 99)
set(CMAKE_C_STANDARD_REQUIRED ON)

project(Balance C)
project(CountArray C)
project(Substring C)

# Указываем исполняемый файл
add_executable(Balance balance.c)
add_executable(CountArray count_array.c)
add_executable(Substring substring.c)