set(CMAKE_VERBOSE_MAKEFILE ON)

add_library(blub SHARED blub.c)

target_link_libraries(blub z)

install_targets(/lib blub)

file(WRITE  ${CMAKE_CURRENT_BINARY_DIR}/LibsDependencies.cmake "# this file was generated during the build process\n")
export_library_dependencies(${CMAKE_CURRENT_BINARY_DIR}/LibsDependencies.cmake APPEND)

