add packer

This commit is contained in:
Ivanov Matvey 2025-01-09 22:37:31 +10:00
parent 940781265f
commit 7c4e70fc8f

12
CMakeLists.txt Normal file
View File

@ -0,0 +1,12 @@
cmake_minimum_required(VERSION 3.13) # Проверка версии CMake.
# Если версия установленной программы
# старее указаной, произойдёт аварийный выход.
project(hello-world-cpp) # Название проекта
add_library(process_launcher STATIC process_launcher.cpp) # Создание статической библиотеки с именем process_launcher
add_executable(main test.cpp) # Создает исполняемый файл с именем main
target_link_libraries(main process_launcher) # Линковка программы с библиотекой