diff options
author | Claudio Fantacci <claudio.fantacci@gmail.com> | 2019-03-13 15:04:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-03-15 15:22:29 (GMT) |
commit | a7d853868b147d9051c40564f2b3e445011b888b (patch) | |
tree | f5b6d36c00a1c1d628790fe4218be61e539e7e9b /Help/release | |
parent | 80b761b9244d5ab9047082be40ebeee256be95ef (diff) | |
download | CMake-a7d853868b147d9051c40564f2b3e445011b888b.zip CMake-a7d853868b147d9051c40564f2b3e445011b888b.tar.gz CMake-a7d853868b147d9051c40564f2b3e445011b888b.tar.bz2 |
FindGLEW: Update implementation
Replicate behaviour of upstream GLEW.
* define the imported target GLEW::glew for the shared library GLEW
* if GLEW_USE_STATIC_LIBS is defined and set to TRUE, this module instead
defines the imported target GLEW::glew_s for the static library GLEW
* an imported target GLEW::GLEW is created as a copy of either GLEW::glew
or GLEW::glew_s
* by setting GLEW_VERBOSE you print out the log of the module.
Fixes: #17638, #17864, #18989
Diffstat (limited to 'Help/release')
-rw-r--r-- | Help/release/dev/FindGLEW-updates.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Help/release/dev/FindGLEW-updates.rst b/Help/release/dev/FindGLEW-updates.rst new file mode 100644 index 0000000..6487052 --- /dev/null +++ b/Help/release/dev/FindGLEW-updates.rst @@ -0,0 +1,5 @@ +FindGLEW-updates +---------------- + +* The :module:`FindGLEW` module now provides an interface more consistent + with what upstream GLEW provides in its own CMake package files. |