Skip to content
Snippets Groups Projects
Commit 39ec9bd0 authored by esr14's avatar esr14
Browse files

Add new file

parent a1b40f67
Branches main
No related tags found
No related merge requests found
cmake_minimum_required(VERSION 3.5) # Минимальная версия CMake
project(multifile)
# Добавляем все исходные файлы проекта
set(SOURCE_FILES main.cpp func.cpp hash_table)
# Создаем исполняемый файл с именем соответствующим имени проекта
add_executable(${PROJECT_NAME} ${SOURCE_FILES})
find_package(OpenSSL REQUIRED) # Поиск пакета OPENSSL
target_link_libraries(multifile ${OpenCV_LIBS}) # Линковка с библиотеками OpenCV
target_link_libraries(multifile ${OPENSSL_LIBRARIES}) # Линковка с библиотеками OPENSSL
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment