mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-07 14:20:06 -06:00
This tests whether GIFLIB can be found and the linker works. For newer versions (>=5) it also tests if the version was parsed correctly.
17 lines
477 B
CMake
17 lines
477 B
CMake
cmake_minimum_required(VERSION 3.4)
|
|
project(TestFindGIF C)
|
|
include(CTest)
|
|
|
|
find_package(GIF REQUIRED)
|
|
|
|
add_definitions(-DCMAKE_EXPECTED_GIF_VERSION="${GIF_VERSION}")
|
|
|
|
add_executable(test_tgt main.c)
|
|
target_link_libraries(test_tgt GIF::GIF)
|
|
add_test(NAME test_tgt COMMAND test_tgt)
|
|
|
|
add_executable(test_var main.c)
|
|
target_include_directories(test_var PRIVATE ${GIF_INCLUDE_DIRS})
|
|
target_link_libraries(test_var PRIVATE ${GIF_LIBRARIES})
|
|
add_test(NAME test_var COMMAND test_var)
|