diff options
author | Mrazek, Petr <petr.mrazek@acision.com> | 2014-07-22 12:27:00 +0200 |
---|---|---|
committer | Mrazek, Petr <petr.mrazek@acision.com> | 2014-07-22 12:27:00 +0200 |
commit | e5b393318fb2a143c9520928dd45c697af68f498 (patch) | |
tree | dfe30a98fb217d7e19ffebeb56ddb91634af45ce | |
parent | 1ed90293acd34a67258b9ecf85ebfdea29657e03 (diff) | |
download | MultiMC-e5b393318fb2a143c9520928dd45c697af68f498.tar MultiMC-e5b393318fb2a143c9520928dd45c697af68f498.tar.gz MultiMC-e5b393318fb2a143c9520928dd45c697af68f498.tar.lz MultiMC-e5b393318fb2a143c9520928dd45c697af68f498.tar.xz MultiMC-e5b393318fb2a143c9520928dd45c697af68f498.zip |
Include the SVG icon engine.
-rw-r--r-- | CMakeLists.txt | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 7efd42e6..682526d2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -782,7 +782,13 @@ if(CMAKE_BUILD_TYPE STREQUAL "Debug" OR CMAKE_BUILD_TYPE STREQUAL "RelWithDebInf COMPONENT Runtime REGEX "tga|tiff|mng" EXCLUDE ) - + # Icon engines + install( + DIRECTORY "${QT_PLUGINS_DIR}/iconengines" + DESTINATION ${PLUGIN_DEST_DIR} + COMPONENT Runtime + REGEX "fontawesome" EXCLUDE + ) # Platform plugins install( DIRECTORY "${QT_PLUGINS_DIR}/platforms" @@ -800,7 +806,13 @@ else() REGEX "d\\." EXCLUDE REGEX "_debug\\." EXCLUDE ) - + # Icon engines + install( + DIRECTORY "${QT_PLUGINS_DIR}/iconengines" + DESTINATION ${PLUGIN_DEST_DIR} + COMPONENT Runtime + REGEX "fontawesome" EXCLUDE + ) # Platform plugins install( DIRECTORY "${QT_PLUGINS_DIR}/platforms" |