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.
18 lines
657 B
18 lines
657 B
cmake_minimum_required(VERSION 3.7)
|
|
project(TestFindLibRHash C)
|
|
include(CTest)
|
|
|
|
# CMake does not actually provide FindLibRHash publicly.
|
|
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/../../../Source/Modules)
|
|
|
|
find_package(LibRHash REQUIRED)
|
|
|
|
add_executable(test_librhash_tgt main.c)
|
|
target_link_libraries(test_librhash_tgt LibRHash::LibRHash)
|
|
add_test(NAME test_librhash_tgt COMMAND test_librhash_tgt)
|
|
|
|
add_executable(test_librhash_var main.c)
|
|
target_include_directories(test_librhash_var PRIVATE ${LibRHash_INCLUDE_DIRS})
|
|
target_link_libraries(test_librhash_var PRIVATE ${LibRHash_LIBRARIES})
|
|
add_test(NAME test_librhash_var COMMAND test_librhash_var)
|