summaryrefslogtreecommitdiff
path: root/tests/test-get-transients/CMakeLists.txt
blob: cd53f0c33d0edb30bf9bbfc12936f812993aec27 (plain)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 
project (test-input-remover) include (FindPkgConfig) 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)	target_link_libraries (test-get-transients ${COMPIZ_TEST_GET_TRANSIENTS_LIBRARIES}) endif (COMPIZ_TEST_GET_TRANSIENTS_FOUND)