~townsend/compiz/fix-auto-vp-switch-0.9.10

« back to all changes in this revision

Viewing changes to src/logmessage/CMakeLists.txt

  • Committer: Sam Spilsbury
  • Date: 2013-07-15 20:58:14 UTC
  • mto: This revision was merged to the branch mainline in revision 3764.
  • Revision ID: sam.spilsbury@canonical.com-20130715205814-84fn1cmpauewh57p
Don't install file in the wrong place

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
1
INCLUDE_DIRECTORIES(  
3
2
  ${compiz_SOURCE_DIR}/include
4
3
    
5
4
  ${Boost_INCLUDE_DIRS}
6
5
)
7
6
 
8
 
SET( PUBLIC_HEADERS ${compiz_SOURCE_DIR}/include/core/logmessage.h )
9
 
SET( PRIVATE_HEADERS )
10
 
 
11
7
SET( SRCS ${CMAKE_CURRENT_SOURCE_DIR}/src/logmessage.cpp )
12
8
 
13
9
ADD_LIBRARY( 
22
18
IF (COMPIZ_BUILD_TESTING)
23
19
ADD_SUBDIRECTORY( ${CMAKE_CURRENT_SOURCE_DIR}/tests )
24
20
ENDIF (COMPIZ_BUILD_TESTING)
25
 
 
26
 
SET_TARGET_PROPERTIES(
27
 
  compiz_logmessage PROPERTIES
28
 
  PUBLIC_HEADER "${PUBLIC_HEADERS}"
29
 
)
30
 
 
31
 
install (FILES ${PUBLIC_HEADERS} DESTINATION ${COMPIZ_CORE_INCLUDE_DIR})