~kdub/platform-api/remove-mirserver

« back to all changes in this revision

Viewing changes to src/ubuntu/application/touch/CMakeLists.txt

  • Committer: Kevin DuBois
  • Date: 2014-09-18 14:37:32 UTC
  • Revision ID: kevin.dubois@canonical.com-20140918143732-itmiradt9d7eaurl
remove the mirserver component

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
  module_version.h
10
10
)
11
11
 
12
 
add_library(
13
 
  ubuntu_application_api_touch_mirserver MODULE
14
 
 
15
 
  module.cpp
16
 
  module_version.h
17
 
)
18
 
 
19
12
target_link_libraries(
20
13
  ubuntu_application_api_touch_mirclient
21
14
 
22
15
  "-Wl,--whole-archive"
23
16
  ubuntu_application_api_mirclient
24
 
  ubuntu_application_api_mircommon
25
 
  ubuntu_application_api_hybris
26
 
  ${UBUNTU_APPLICATION_API_LINK_LIBRARIES}
27
 
  "-Wl,--no-whole-archive"
28
 
  #TODO: Alarms
29
 
)
30
 
 
31
 
target_link_libraries(
32
 
  ubuntu_application_api_touch_mirserver
33
 
 
34
 
  "-Wl,--whole-archive"
35
 
  ubuntu_application_api_mirserver
36
 
  ubuntu_application_api_mircommon
37
17
  ubuntu_application_api_hybris
38
18
  ${UBUNTU_APPLICATION_API_LINK_LIBRARIES}
39
19
  "-Wl,--no-whole-archive"
47
27
  SOVERSION ${UBUNTU_PLATFORM_API_VERSION_MAJOR}
48
28
)
49
29
 
50
 
set_target_properties(
51
 
  ubuntu_application_api_touch_mirserver
52
 
  PROPERTIES
53
 
  VERSION ${UBUNTU_PLATFORM_API_VERSION_MAJOR}.${UBUNTU_PLATFORM_API_VERSION_MINOR}.${UBUNTU_PLATFORM_API_VERSION_PATCH}
54
 
  SOVERSION ${UBUNTU_PLATFORM_API_VERSION_MAJOR}
55
 
)
56
30
install(
57
31
  TARGETS ubuntu_application_api_touch_mirclient
58
32
  # this is not a development library to compile against, users should always
59
33
  # specify the SONAME; so don't build a *.so
60
34
  LIBRARY DESTINATION "${LIB_INSTALL_DIR}" NAMELINK_SKIP
61
35
)
62
 
 
63
 
install(
64
 
  TARGETS ubuntu_application_api_touch_mirserver
65
 
  # this is not a development library to compile against, users should always
66
 
  # specify the SONAME; so don't build a *.so
67
 
  LIBRARY DESTINATION "${LIB_INSTALL_DIR}" NAMELINK_SKIP
68
 
)