22 lines
364 B
CMake
22 lines
364 B
CMake
cmake_minimum_required(VERSION 3.0.0)
|
|
|
|
project(IntegrityCheck)
|
|
|
|
set( SOURCES
|
|
src/integritycheck.cpp
|
|
)
|
|
|
|
set( HEADERS
|
|
IntegrityCheck/integritycheck.h
|
|
)
|
|
|
|
add_library(${PROJECT_NAME} STATIC ${SOURCES} )
|
|
|
|
target_include_directories(${PROJECT_NAME} PUBLIC
|
|
inc
|
|
${CMAKE_CURRENT_SOURCE_DIR}/../cryptopp
|
|
)
|
|
|
|
target_link_libraries(${PROJECT_NAME} PUBLIC
|
|
cryptopp-static
|
|
) |