diff options
author | Brad King <brad.king@kitware.com> | 2016-12-02 19:34:41 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-12-02 20:11:49 (GMT) |
commit | 027ce359ff7454ac0aca4d9a9208759ef4b9c8b7 (patch) | |
tree | afdd06ef04418b23e20c39e522552bf778ed3ebb /Help | |
parent | 738a182a90dd29ce16376ab03a08c718b8068867 (diff) | |
download | CMake-027ce359ff7454ac0aca4d9a9208759ef4b9c8b7.zip CMake-027ce359ff7454ac0aca4d9a9208759ef4b9c8b7.tar.gz CMake-027ce359ff7454ac0aca4d9a9208759ef4b9c8b7.tar.bz2 |
FindOpenGL: Provide imported targets for GL and GLU
Create OpenGL::GL and OpenGL::GLU imported targets using the locations
found.
This feature was originally added by commit v3.1.0-rc1~420^2~2
(FindOpenGL: Provide imported targets for GL and GLU, 2014-05-31) but
had to be reverted by commit v3.1.0-rc3~10^2 (FindOpenGL: Revert support
for imported targets, 2014-12-01) due to issue #15267. Since then we
added support for `IMPORTED_LIBNAME` to interface libraries, so use it
to handle the case where we have only the library name without an
absolute path.
Inspired-by: Philipp Möller <bootsarehax@googlemail.com>
Closes: #15267
Diffstat (limited to 'Help')
-rw-r--r-- | Help/release/dev/FindOpenGL-imported-targets.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Help/release/dev/FindOpenGL-imported-targets.rst b/Help/release/dev/FindOpenGL-imported-targets.rst new file mode 100644 index 0000000..79e3cb0 --- /dev/null +++ b/Help/release/dev/FindOpenGL-imported-targets.rst @@ -0,0 +1,5 @@ +FindOpenGL-imported-targets +--------------------------- + +* The :module:`FindOpenGL` module now provides imported targets + ``OpenGL::GL`` and ``OpenGL::GLU`` when the libraries are found. |