~ted/ubuntu-app-launch/lp1575990-more-tollerant-stop

« back to all changes in this revision

Viewing changes to tools/CMakeLists.txt

  • Committer: CI Train Bot
  • Author(s): Ted Gould
  • Date: 2016-04-21 19:47:02 UTC
  • mfrom: (208.7.4 libpam-cgfs-lp1535058)
  • Revision ID: ci-train-bot@canonical.com-20160421194702-dbxi7v2s9qmud390
Add dependency on libpam-cgfs on Xenial so that cgroups work properly in Upstart Fixes: #1535058
Approved by: Charles Kerr

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
# ubuntu-app-list
4
4
########################
5
5
 
6
 
add_executable(ubuntu-app-list ubuntu-app-list.c)
 
6
add_executable(ubuntu-app-list ubuntu-app-list.cpp)
7
7
set_target_properties(ubuntu-app-list PROPERTIES OUTPUT_NAME "ubuntu-app-list")
8
8
target_link_libraries(ubuntu-app-list ubuntu-launcher)
9
9
install(TARGETS ubuntu-app-list RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}")
10
10
 
11
11
########################
 
12
# ubuntu-app-list-pids
 
13
########################
 
14
 
 
15
add_executable(ubuntu-app-list-pids ubuntu-app-list-pids.cpp)
 
16
set_target_properties(ubuntu-app-list-pids PROPERTIES OUTPUT_NAME "ubuntu-app-list-pids")
 
17
target_link_libraries(ubuntu-app-list-pids ubuntu-launcher)
 
18
install(TARGETS ubuntu-app-list-pids RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}")
 
19
 
 
20
########################
12
21
# ubuntu-app-launch
13
22
########################
14
23
 
30
39
# ubuntu-app-pid
31
40
########################
32
41
 
33
 
add_executable(ubuntu-app-pid ubuntu-app-pid.c)
 
42
add_executable(ubuntu-app-pid ubuntu-app-pid.cpp)
34
43
set_target_properties(ubuntu-app-pid PROPERTIES OUTPUT_NAME "ubuntu-app-pid")
35
44
target_link_libraries(ubuntu-app-pid ubuntu-launcher)
36
45
install(TARGETS ubuntu-app-pid RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}")
39
48
# ubuntu-app-stop
40
49
########################
41
50
 
42
 
add_executable(ubuntu-app-stop ubuntu-app-stop.c)
 
51
add_executable(ubuntu-app-stop ubuntu-app-stop.cpp)
43
52
set_target_properties(ubuntu-app-stop PROPERTIES OUTPUT_NAME "ubuntu-app-stop")
44
53
target_link_libraries(ubuntu-app-stop ubuntu-launcher)
45
54
install(TARGETS ubuntu-app-stop RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}")
48
57
# ubuntu-app-triplet
49
58
########################
50
59
 
51
 
add_executable(ubuntu-app-triplet ubuntu-app-triplet.c)
 
60
add_executable(ubuntu-app-triplet ubuntu-app-triplet.cpp)
52
61
set_target_properties(ubuntu-app-triplet PROPERTIES OUTPUT_NAME "ubuntu-app-triplet")
53
62
target_link_libraries(ubuntu-app-triplet ubuntu-launcher)
54
63
install(TARGETS ubuntu-app-triplet RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}")
57
66
# ubuntu-helper-start
58
67
########################
59
68
 
60
 
add_executable(ubuntu-helper-start ubuntu-helper-start.c)
 
69
add_executable(ubuntu-helper-start ubuntu-helper-start.cpp)
61
70
set_target_properties(ubuntu-helper-start PROPERTIES OUTPUT_NAME "ubuntu-helper-start")
62
71
target_link_libraries(ubuntu-helper-start ubuntu-launcher)
63
72
install(TARGETS ubuntu-helper-start RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}")
66
75
# ubuntu-helper-stop
67
76
########################
68
77
 
69
 
add_executable(ubuntu-helper-stop ubuntu-helper-stop.c)
 
78
add_executable(ubuntu-helper-stop ubuntu-helper-stop.cpp)
70
79
set_target_properties(ubuntu-helper-stop PROPERTIES OUTPUT_NAME "ubuntu-helper-stop")
71
80
target_link_libraries(ubuntu-helper-stop ubuntu-launcher)
72
81
install(TARGETS ubuntu-helper-stop RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}")
75
84
# ubuntu-helper-list
76
85
########################
77
86
 
78
 
add_executable(ubuntu-helper-list ubuntu-helper-list.c)
 
87
add_executable(ubuntu-helper-list ubuntu-helper-list.cpp)
79
88
set_target_properties(ubuntu-helper-list PROPERTIES OUTPUT_NAME "ubuntu-helper-list")
80
89
target_link_libraries(ubuntu-helper-list ubuntu-launcher)
81
90
install(TARGETS ubuntu-helper-list RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}")