summaryrefslogtreecommitdiff
path: root/docs/templates
diff options
context:
space:
mode:
authorChad Elliott <elliottc@objectcomputing.com>2022-10-26 08:00:46 -0500
committerChad Elliott <elliottc@objectcomputing.com>2022-10-26 08:00:46 -0500
commitdf6fab372ee02e9dba8232014f95e33ae8f89ca9 (patch)
tree44f71d83272275dbcb58109bffc3df858a3f5545 /docs/templates
parent65a3e3a6c3e303057d9eb3f4124a486b741d445d (diff)
downloadMPC-df6fab372ee02e9dba8232014f95e33ae8f89ca9.tar.gz
Added information on CMake support.
Diffstat (limited to 'docs/templates')
-rw-r--r--docs/templates/cmake.txt14
1 files changed, 14 insertions, 0 deletions
diff --git a/docs/templates/cmake.txt b/docs/templates/cmake.txt
new file mode 100644
index 00000000..391fd72f
--- /dev/null
+++ b/docs/templates/cmake.txt
@@ -0,0 +1,14 @@
+// Current as of 10/26/2022
+// This defines the role of all the template variables specific to the
+// 'cmake' project type.
+//
+// Please try to keep this alphabetically sorted.
+//
+cmake_minimum_required = Sets the minimum required version for CMake.
+env_dllout = The value of 'dllout' with &#36;() values converted to &#36;ENV{}.
+env_exeout = The value of 'exeout' with &#36;() values converted to &#36;ENV{}.
+env_includes = The value of 'includes' with &#36;() values converted to &#36;ENV{}.
+env_libout = The value of 'libout' with &#36;() values converted to &#36;ENV{}.
+env_libpaths = The value of 'libpaths' with &#36;() values converted to &#36;ENV{}.
+packages = A list of packages to be used with the find_package() command.
+pre_find_package = A specific command or set of commands to be issued before any find_package() commands are called.