diff options
author | Brad King <brad.king@kitware.com> | 2014-07-02 19:38:10 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-07-09 13:43:42 (GMT) |
commit | 2c470b775ab54f565383c95200d16dc42d94fe17 (patch) | |
tree | 16072279bce09969004c90ea4dc55384c8265cf0 /Help/release | |
parent | de4f3e2c82a92a7dfc6305a09cc32d9d5c6e8c34 (diff) | |
download | CMake-2c470b775ab54f565383c95200d16dc42d94fe17.zip CMake-2c470b775ab54f565383c95200d16dc42d94fe17.tar.gz CMake-2c470b775ab54f565383c95200d16dc42d94fe17.tar.bz2 |
add_library: Allow arbitrary non-linked sources in OBJECT libraries
Loosen this restriction on OBJECT libraries to allow source files of any
name to be generated by custom commands or listed for reference in IDE
projects so long as they would not affect linking of a normal library.
Update the rejection message to be more specific about the looser
restriction.
Extend the ObjectLibrary test to cover a ".cmake" file generated by a
custom command in an OBJECT library.
Diffstat (limited to 'Help/release')
-rw-r--r-- | Help/release/dev/allow-OBJECT-library-extra-sources.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Help/release/dev/allow-OBJECT-library-extra-sources.rst b/Help/release/dev/allow-OBJECT-library-extra-sources.rst new file mode 100644 index 0000000..472fcdc --- /dev/null +++ b/Help/release/dev/allow-OBJECT-library-extra-sources.rst @@ -0,0 +1,6 @@ +allow-OBJECT-library-extra-sources +---------------------------------- + +* :ref:`Object Libraries` may now have extra sources that do not + compile to object files so long as they would not affect linking + of a normal library (e.g. ``.dat`` is okay but not ``.def``). |