streamhash/CMakeLists.txt

8 lines
185 B
CMake

cmake_minimum_required(VERSION 3.20.2)
project(streamhash C)
find_package(OpenSSL REQUIRED)
add_executable(${PROJECT_NAME} main.c)
target_link_libraries(${PROJECT_NAME} OpenSSL::SSL)