You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1008 B
43 lines
1008 B
project(librhash C)
|
|
|
|
# Disable warnings to avoid changing 3rd party code.
|
|
if(CMAKE_C_COMPILER_ID MATCHES
|
|
"^(GNU|LCC|Clang|AppleClang|IBMClang|XLClang|XL|VisualAge|SunPro|HP|Intel|IntelLLVM|NVHPC)$")
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -w")
|
|
elseif(CMAKE_C_COMPILER_ID STREQUAL "PathScale")
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -woffall")
|
|
endif()
|
|
|
|
set(librhash_sources
|
|
librhash/algorithms.c
|
|
librhash/algorithms.h
|
|
librhash/byte_order.c
|
|
librhash/byte_order.h
|
|
librhash/hex.c
|
|
librhash/hex.h
|
|
librhash/md5.c
|
|
librhash/md5.h
|
|
librhash/rhash.c
|
|
librhash/rhash.h
|
|
librhash/sha1.c
|
|
librhash/sha1.h
|
|
librhash/sha256.c
|
|
librhash/sha256.h
|
|
librhash/sha3.c
|
|
librhash/sha3.h
|
|
librhash/sha512.c
|
|
librhash/sha512.h
|
|
librhash/ustd.h
|
|
librhash/util.c
|
|
librhash/util.h
|
|
)
|
|
|
|
include_directories(
|
|
${KWSYS_HEADER_ROOT}
|
|
)
|
|
|
|
add_library(cmlibrhash ${librhash_sources})
|
|
target_compile_definitions(cmlibrhash PRIVATE NO_IMPORT_EXPORT)
|
|
|
|
install(FILES COPYING DESTINATION ${CMAKE_DOC_DIR}/cmlibrhash)
|