This repository has been archived on 2024-06-13. You can view files and clone it, but cannot push or open issues or pull requests.
nekohook/cmake/CMakeLists.txt

14 lines
345 B
CMake

include(CMakePackageConfigHelpers)
configure_package_config_file(
NekohookConfig.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/NekohookConfig.cmake
INSTALL_DESTINATION lib/cmake/Nekohook
PATH_VARS CMAKE_INSTALL_PREFIX)
install(FILES Nekohook.cmake ${CMAKE_CURRENT_BINARY_DIR}/NekohookConfig.cmake
DESTINATION lib/cmake/Nekohook)