summaryrefslogtreecommitdiffstats
path: root/Help/release
diff options
context:
space:
mode:
authorSaleem Abdulrasool <compnerd@compnerd.org>2019-05-09 05:49:33 (GMT)
committerBrad King <brad.king@kitware.com>2019-05-16 18:41:05 (GMT)
commitd745551fb6311f5db6e8133df63a7fc410e8a68b (patch)
tree371700340b81286c8540009f3c884a9c853426d6 /Help/release
parent9a182c9e5b36ba68fc91b53e3d755c263ee3d0ef (diff)
downloadCMake-d745551fb6311f5db6e8133df63a7fc410e8a68b.zip
CMake-d745551fb6311f5db6e8133df63a7fc410e8a68b.tar.gz
CMake-d745551fb6311f5db6e8133df63a7fc410e8a68b.tar.bz2
Help: add some initial documentation for Swift support
Diffstat (limited to 'Help/release')
-rw-r--r--Help/release/dev/swift-support.rst23
1 files changed, 23 insertions, 0 deletions
diff --git a/Help/release/dev/swift-support.rst b/Help/release/dev/swift-support.rst
new file mode 100644
index 0000000..49784e2
--- /dev/null
+++ b/Help/release/dev/swift-support.rst
@@ -0,0 +1,23 @@
+Swift Language Support
+----------------------
+
+* Preliminary support for the Swift language with the :generator:`Ninja`
+ generator was added. Use the :envvar:`SWIFTC` environment variable to
+ specify a compiler.
+
+* Support to emit an output file map was added to enable Swift compilation.
+
+* A target property :prop_tgt:`Swift_DEPENDENCIES_FILE` was added to targets to
+ indicate where to save the target swift dependencies file. If one is not
+ specified, it will default to `<TARGET>.swiftdeps`.
+
+* A target property :prop_tgt:`Swift_MODULE_NAME` was added to targets to
+ indicate the Swift module name. If it is not specified, it will default to
+ the name of the target.
+
+* A source property :prop_sf:`Swift_DEPENDENCIES_FILE` was added to sources to
+ indicate where to save the target swift dependencies file. If one is not
+ specified, it will default to `<OBJECT>.swiftdeps`.
+
+* A source property :prop_sf:`Swift_DIAGNOSTICS_FILE` was added to sources to
+ indicate where to write the serialised Swift diagnostics.