~smspillaz/+junk/focusinevents

« back to all changes in this revision

Viewing changes to CMakeLists.txt

  • Committer: Sam Spilsbury
  • Date: 2011-05-29 14:51:47 UTC
  • Revision ID: sam.spilsbury@canonical.com-20110529145147-fjfe0wjom1xk5pvg
Focus In Events is a small program to capture who's stealing the focus
with their damn key grabs

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
include (FindPkgConfig)
 
2
 
 
3
project (focusinevents)
 
4
 
 
5
add_executable (focusinevents
 
6
                focusinevents.cpp)
 
7
 
 
8
pkg_check_modules (FOCUSINEVENTS REQUIRED x11 cairo-xlib)
 
9
 
 
10
target_link_libraries (focusinevents ${FOCUSINEVENTS_LIBRARIES} m pthread dl)
 
11
 
 
12
include_directories (focusinevents ${FOCUSINEVENTS_INCLUDES})
 
13
 
 
14
install (
 
15
    TARGETS focusinevents
 
16
    DESTINATION ${CMAKE_INSTALL_PREFIX}/bin
 
17
)