cmake_minimum_required(VERSION 3.20)

project(ament_cmake_copyright NONE)

find_package(ament_cmake_core REQUIRED)
find_package(ament_cmake_test REQUIRED)

# include CMake functions of this package
set(ament_cmake_copyright_DIR "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
include("ament_cmake_copyright-extras.cmake" NO_POLICY_SCOPE)

ament_package(
  CONFIG_EXTRAS "ament_cmake_copyright-extras.cmake"
)

install(
  DIRECTORY cmake
  DESTINATION share/${PROJECT_NAME}
)

if(BUILD_TESTING)
  find_package(ament_cmake_lint_cmake REQUIRED)
  ament_lint_cmake()

  ament_copyright()
endif()
