summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
blob: c83084784855a21debae281cbbabfa1ceb123290 (plain)
1
2
3
4
5
6
7
8
cmake_minimum_required(VERSION 2.8.9)
project(hmacsha256)

include_directories(include)

file(GLOB SOURCES "src/*.cc")

add_executable(hmacsha256 ${SOURCES})