Add information about new CMake interface to LLVM and note

deprecation of llvm_map_components_to_libraries()


git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_35@214083 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Dan Liew 2014-07-28 14:04:39 +00:00
parent 86aeb8ca4a
commit 3d8fb061a9
2 changed files with 12 additions and 0 deletions

View File

@ -389,6 +389,8 @@ for a quick solution.
Also see the `LLVM-specific variables`_ section for variables used when
cross-compiling.
.. _Embedding LLVM in your project:
Embedding LLVM in your project
==============================

View File

@ -235,6 +235,16 @@ Changes to CMake build system
the ``install`` target is invoked then the built documentation will be
installed. See :ref:`LLVM-specific variables`.
* Both the Autoconf/Makefile and CMake build systems now generate
``LLVMConfig.cmake`` (and other files) to export installed libraries. This
means that projects using CMake to build against LLVM libraries can now build
against an installed LLVM built by the Autoconf/Makefile system. See
:ref:`Embedding LLVM in your project` for details.
* Use of ``llvm_map_components_to_libraries()`` by external projects is
deprecated and the new ``llvm_map_components_to_libnames()`` should be used
instead.
External Open Source Projects Using LLVM 3.5
============================================