CMake/Tests/FindPNG/Test/CMakeLists.txt
Sam Thursfield 9b08c62330 FindPNG: Create an imported PNG::PNG target (#15911)
Imported targets are now the recommended way of dealing with external
library dependencies.  Add one for FindPNG and update documentation
accordingly.  Also add a test case activated by CMake_TEST_FindPNG.
2016-01-21 13:58:15 -05:00

17 lines
484 B
CMake

cmake_minimum_required(VERSION 3.4)
project(TestFindPNG C)
include(CTest)
find_package(PNG REQUIRED)
add_definitions(-DCMAKE_EXPECTED_PNG_VERSION="${PNG_VERSION_STRING}")
add_executable(test_tgt main.c)
target_link_libraries(test_tgt PNG::PNG)
add_test(NAME test_tgt COMMAND test_tgt)
add_executable(test_var main.c)
target_include_directories(test_var PRIVATE ${PNG_INCLUDE_DIRS})
target_link_libraries(test_var PRIVATE ${PNG_LIBRARIES})
add_test(NAME test_var COMMAND test_var)