Skip to content

Instantly share code, notes, and snippets.

@devendranaga
Created July 18, 2021 11:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devendranaga/c063a0f1165fb85fa17aa43bf64f2912 to your computer and use it in GitHub Desktop.
Save devendranaga/c063a0f1165fb85fa17aa43bf64f2912 to your computer and use it in GitHub Desktop.
project(needham_schroeder_protocol)
cmake_minimum_required(VERSION 3.8)
set(SRC
./ns.cc)
include_directories(./)
set(CMAKE_CXX_FLAGS "-Wall -g -ggdb")
add_executable(ns ${SRC})
target_link_libraries(ns ssl crypto)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment