~cmake-extras/cmake-extras/trunk

47.3.1 by James Henstridge
Move Find*.cmake modules to non-versioned cmake directory where they can
1
cmake_minimum_required(VERSION 3.0.2)
21.1.2 by Pete Woods
Perform installation using CMake, to allow version-detection
2
project(cmake-extras)
47.3.1 by James Henstridge
Move Find*.cmake modules to non-versioned cmake directory where they can
3
4
include(GNUInstallDirs)
5
6
# Modules using the newer find_package() "config" extension mechanism.
21.1.2 by Pete Woods
Perform installation using CMake, to allow version-detection
7
install(
39.2.1 by Charles Kerr
first draft of a 'formatcode' target + test to make it easier to follow a house style
8
  DIRECTORY "src/"
47.3.1 by James Henstridge
Move Find*.cmake modules to non-versioned cmake directory where they can
9
  DESTINATION "${CMAKE_INSTALL_DATADIR}/cmake/"
10
  USE_SOURCE_PERMISSIONS
11
)
12