mirror of
https://github.com/usatiuk/remotefs.git
synced 2025-10-28 15:37:48 +01:00
dump
This commit is contained in:
22
utils/CMakeLists.txt
Normal file
22
utils/CMakeLists.txt
Normal file
@@ -0,0 +1,22 @@
|
||||
cmake_minimum_required(VERSION 3.15)
|
||||
|
||||
add_library(utils
|
||||
include/Serialize.hpp
|
||||
src/Exception.cpp
|
||||
include/Exception.h
|
||||
include/stuff.hpp
|
||||
src/stuff.cpp
|
||||
include/Logger.h
|
||||
src/Logger.cpp
|
||||
src/Options.cpp
|
||||
include/Options.h
|
||||
include/SHA.h
|
||||
src/SHA.cpp
|
||||
)
|
||||
|
||||
find_package(OpenSSL REQUIRED)
|
||||
target_link_libraries(utils PRIVATE OpenSSL::SSL OpenSSL::Crypto)
|
||||
|
||||
target_include_directories(utils PUBLIC include)
|
||||
|
||||
add_subdirectory(tests)
|
||||
Reference in New Issue
Block a user