vcpkg/ports/lodepng/CMakeLists.txt

23 lines
723 B
CMake
Raw Normal View History

2017-09-03 22:32:34 +08:00
cmake_minimum_required(VERSION 3.8.0)
project(lodepng)
add_library(lodepng lodepng.cpp lodepng_util.cpp)
target_include_directories(lodepng PUBLIC
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
)
2017-09-03 22:32:34 +08:00
file(WRITE "${CMAKE_BINARY_DIR}/lodepng-config.cmake" "include(\"\${CMAKE_CURRENT_LIST_DIR}/lodepng-targets.cmake\")")
install(FILES "${CMAKE_BINARY_DIR}/lodepng-config.cmake" DESTINATION "share/lodepng/")
2017-09-03 22:32:34 +08:00
install(TARGETS lodepng EXPORT lodepng-targets)
2017-09-03 22:32:34 +08:00
install(EXPORT lodepng-targets DESTINATION share/lodepng/)
2017-09-03 22:32:34 +08:00
if(NOT DDISABLE_INSTALL_EXAMPLES)
install(DIRECTORY examples DESTINATION share/lodepng/)
endif()
if(NOT DISABLE_INSTALL_HEADERS)
install(FILES lodepng.h lodepng_util.h DESTINATION include)
endif()