Browse Source

CMake: provide correct alias targets for Any* plugins.

Forgotten in 8a2815ade5 when moving these
out of the plugins directory.
pull/191/head
Vladimír Vondruš 8 years ago
parent
commit
fe2020bc62
  1. 6
      doc/changelog.dox
  2. 4
      src/MagnumPlugins/AnyAudioImporter/CMakeLists.txt
  3. 4
      src/MagnumPlugins/AnyImageConverter/CMakeLists.txt
  4. 4
      src/MagnumPlugins/AnyImageImporter/CMakeLists.txt
  5. 4
      src/MagnumPlugins/AnySceneImporter/CMakeLists.txt

6
doc/changelog.dox

@ -146,6 +146,12 @@ See also:
- @ref Trade::ObjImporter "ObjImporter" didn't work with CMake subprojects - @ref Trade::ObjImporter "ObjImporter" didn't work with CMake subprojects
due to an embarrassing typo (see due to an embarrassing typo (see
[mosra/magnum#259](https://github.com/mosra/magnum/issues/259)) [mosra/magnum#259](https://github.com/mosra/magnum/issues/259))
- @ref Audio::AnyImporter "AnyAudioImporter",
@ref Trade::AnyImageConverter "AnyImageConverter",
@ref Trade::AnyImageImporter "AnyImageImporter" and
@ref Trade::AnySceneImporter "AnySceneImporter" plugins were not correctly
updated for subproject support after moving them out of the `magnum-plugins`
repository
@subsection changelog-latest-bugfixes Bug fixes @subsection changelog-latest-bugfixes Bug fixes

4
src/MagnumPlugins/AnyAudioImporter/CMakeLists.txt

@ -59,5 +59,5 @@ if(BUILD_TESTS)
add_subdirectory(Test) add_subdirectory(Test)
endif() endif()
# MagnumPlugins AnyAudioImporter target alias for superprojects # Magnum AnyAudioImporter target alias for superprojects
add_library(MagnumPlugins::AnyAudioImporter ALIAS AnyAudioImporter) add_library(Magnum::AnyAudioImporter ALIAS AnyAudioImporter)

4
src/MagnumPlugins/AnyImageConverter/CMakeLists.txt

@ -59,5 +59,5 @@ if(BUILD_TESTS)
add_subdirectory(Test) add_subdirectory(Test)
endif() endif()
# MagnumPlugins AnyImageConverter target alias for superprojects # Magnum AnyImageConverter target alias for superprojects
add_library(MagnumPlugins::AnyImageConverter ALIAS AnyImageConverter) add_library(Magnum::AnyImageConverter ALIAS AnyImageConverter)

4
src/MagnumPlugins/AnyImageImporter/CMakeLists.txt

@ -59,5 +59,5 @@ if(BUILD_TESTS)
add_subdirectory(Test) add_subdirectory(Test)
endif() endif()
# MagnumPlugins AnyImageImporter target alias for superprojects # Magnum AnyImageImporter target alias for superprojects
add_library(MagnumPlugins::AnyImageImporter ALIAS AnyImageImporter) add_library(Magnum::AnyImageImporter ALIAS AnyImageImporter)

4
src/MagnumPlugins/AnySceneImporter/CMakeLists.txt

@ -59,5 +59,5 @@ if(BUILD_TESTS)
add_subdirectory(Test) add_subdirectory(Test)
endif() endif()
# MagnumPlugins AnySceneImporter target alias for superprojects # Magnum AnySceneImporter target alias for superprojects
add_library(MagnumPlugins::AnySceneImporter ALIAS AnySceneImporter) add_library(Magnum::AnySceneImporter ALIAS AnySceneImporter)

Loading…
Cancel
Save