summaryrefslogtreecommitdiff
path: root/plugins/unityshell/CMakeLists.txt
blob: 2de4ffeba0b89a58b868b3933f57ad69e878aaaf (plain)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 
find_package (Compiz REQUIRED) include (CompizPlugin) set (COMPIZ_PLUGIN_INSTALL_TYPE "package") # Guard against Compiz altering global state. # https://bugs.launchpad.net/compiz/+bug/1096807 if(CMAKE_BUILD_TYPE STREQUAL "") set(revert_compiz TRUE) endif() compiz_plugin (unityshell PKGDEPS ${UNITY_PLUGIN_DEPS} PLUGINDEPS composite opengl compiztoolbox scale CFLAGSADD "-DINSTALLPREFIX='\"${CMAKE_INSTALL_PREFIX}\"' -DPKGDATADIR='\"${PKGDATADIR}\"' -I${CMAKE_BINARY_DIR} -I${CMAKE_SOURCE_DIR} ${BOOT_LOGGER_FLAG} -DGETTEXT_PACKAGE='\"unity\"' ${MAINTAINER_CXXFLAGS} -I${CMAKE_SOURCE_DIR}/dash/ -I${CMAKE_SOURCE_DIR}/launcher/ -I${CMAKE_SOURCE_DIR}/lockscreen/ -I${CMAKE_SOURCE_DIR}/hud/ -I${CMAKE_SOURCE_DIR}/panel/ -I${CMAKE_SOURCE_DIR}/shortcuts/ -I${CMAKE_SOURCE_DIR}/shutdown/ -I${CMAKE_SOURCE_DIR}/unity-shared/" LIBDIRS "${CMAKE_BINARY_DIR}/UnityCore" ) if(revert_compiz) set (CMAKE_BUILD_TYPE "" CACHE STRING "Build type (Debug/Release/RelWithDebInfo/MinSizeRe)" FORCE) endif() add_dependencies(unityshell dash-lib decorations-lib hud-lib launcher-lib lockscreen-lib panel-lib shortcuts-lib shutdown-lib switcher-lib unity-core-${UNITY_API_VERSION} unity-shared unity-shared-compiz) target_link_libraries(unityshell dash-lib decorations-lib hud-lib launcher-lib pam lockscreen-lib panel-lib shortcuts-lib shutdown-lib switcher-lib unity-core-${UNITY_API_VERSION} unity-shared unity-shared-bamf unity-shared-compiz) set_target_properties(unityshell PROPERTIES INSTALL_RPATH "${CACHED_UNITY_PRIVATE_DEPS_LIBRARY_DIRS}" INSTALL_RPATH_USE_LINK_PATH TRUE) # # Data # install (FILES plugin-unityshell.png DESTINATION ${DATADIR}/ccsm/icons/hicolor/64x64/apps)