hello-world-cpp/CMakeLists.txt
2025-01-09 22:45:54 +10:00

12 lines
696 B
CMake
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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