blob: 1f81dd45398ff65a40f7391ef65d2b4145864538 (
plain)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | project (test-input-remover) pkg_check_modules (COMPIZ_TEST_GET_TRANSIENTS REQUIRED x11 xext) if (COMPIZ_TEST_GET_TRANSIENTS_FOUND) include_directories (${COMPIZ_TEST_GET_TRANSIENTS_INCLUDE_DIRS} .. ../../plugins/unityshell/src) link_directories (${COMPIZ_TEST_GET_TRANSIENTS_LINK_DIRS}) add_executable (test-get-transients test-get-transients.cpp ../../plugins/unityshell/src/transientfor.cpp ../../plugins/unityshell/src/inputremover.cpp ../x11-window.cpp ../x11-window-read-transients.cpp) add_dependencies (test-get-transients unity-core-${UNITY_API_VERSION}) target_link_libraries (test-get-transients ${COMPIZ_TEST_GET_TRANSIENTS_LIBRARIES}) endif (COMPIZ_TEST_GET_TRANSIENTS_FOUND)
|