From 09ff5fe3ebc3ab1fcce08433dbf87a4fc35cf19d Mon Sep 17 00:00:00 2001 From: Ivan Pelipenko Date: Tue, 25 Aug 2020 21:54:34 +0300 Subject: [PATCH] add some files, first CMakeLists.txt --- .gitignore | 2 ++ AUTHORS.txt | 1 + CMakeLists.txt | 4 ++++ README.md | 12 ++++++++++++ 4 files changed, 19 insertions(+) create mode 100644 .gitignore create mode 100644 AUTHORS.txt create mode 100644 CMakeLists.txt create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8a2cb3e --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/.svn +CMakeLists.txt.user* diff --git a/AUTHORS.txt b/AUTHORS.txt new file mode 100644 index 0000000..aaa3740 --- /dev/null +++ b/AUTHORS.txt @@ -0,0 +1 @@ +peri4 = Пелипенко Иван diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..85d699f --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,4 @@ +cmake_minimum_required(VERSION 3.0) +project(cmake) +file(GLOB CMAKES "*.cmake" "*.in" "*.keystore") +install(FILES ${CMAKES} DESTINATION ${CMAKE_ROOT}/Modules) diff --git a/README.md b/README.md new file mode 100644 index 0000000..871c98f --- /dev/null +++ b/README.md @@ -0,0 +1,12 @@ +# General SHS Toolkit CMake functionality + +## Introduction + +This repo contains useful CMake utilites: +* FindMinGW - find MinGW compiler locations +* DeployMacros - macros for deploy applications on Windows/Debian/MacOS +* TargetArch - detect target machine architecture +* SHSTKMacros - macros to install libraries and applications + +## Install +Only "install" target exists.