streamhash/CMakeLists.txt

8 lines
185 B
CMake
Raw Normal View History

2021-08-08 15:01:42 +00:00
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)