~ubuntu-branches/ubuntu/wily/mir/wily-proposed

« back to all changes in this revision

Viewing changes to src/common/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): CI Train Bot
  • Date: 2015-05-12 13:12:55 UTC
  • mto: This revision was merged to the branch mainline in revision 96.
  • Revision ID: package-import@ubuntu.com-20150512131255-y7z12i8n4pbvo70x
Tags: upstream-0.13.0+15.10.20150512
ImportĀ upstreamĀ versionĀ 0.13.0+15.10.20150512

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
 
11
11
add_subdirectory(fd)
12
12
add_subdirectory(geometry)
13
 
add_subdirectory(input)
14
13
add_subdirectory(logging)
15
14
add_subdirectory(report/lttng)
16
15
add_subdirectory(env)
23
22
  $<TARGET_OBJECTS:mirtime>
24
23
  ${CMAKE_CURRENT_SOURCE_DIR}/log.cpp
25
24
  )
26
 
add_subdirectory(events)
27
25
 
28
26
set(PREFIX "${CMAKE_INSTALL_PREFIX}")
29
27
set(EXEC_PREFIX "${CMAKE_INSTALL_PREFIX}")
35
33
  ${MIR_GENERATED_INCLUDE_DIRECTORIES}
36
34
  PARENT_SCOPE)
37
35
 
38
 
 
39
 
MESSAGE( STATUS "MIR_COMMON_SOURCES. . . : ${MIR_COMMON_SOURCES}" )
40
 
MESSAGE( STATUS "MIR_COMMON_REFERENCES . : ${MIR_COMMON_REFERENCES}" )
41
 
 
42
 
list(APPEND MIR_COMMON_SOURCES
43
 
  ${CMAKE_CURRENT_SOURCE_DIR}/event.cpp
44
 
)
45
 
 
46
36
add_library(mircommon
47
37
  SHARED
48
38
  ${MIR_COMMON_SOURCES}
53
43
)
54
44
 
55
45
# TODO we need a place to manage ABI and related versioning but use this as placeholder
56
 
set(MIRCOMMON_ABI 3)
 
46
set(MIRCOMMON_ABI 4)
57
47
set(symbol_map ${CMAKE_CURRENT_SOURCE_DIR}/symbols.map)
58
48
 
59
49
set_target_properties(mircommon