~mterry/ubuntu-app-launch/fix-ftbfs

« back to all changes in this revision

Viewing changes to tools/CMakeLists.txt

Merged trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
80
80
target_link_libraries(ubuntu-helper-list ubuntu-launcher)
81
81
install(TARGETS ubuntu-helper-list RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}")
82
82
 
 
83
########################
 
84
# ubuntu-app-usage
 
85
########################
 
86
 
 
87
add_executable(ubuntu-app-usage ubuntu-app-usage.c)
 
88
set_target_properties(ubuntu-app-usage PROPERTIES OUTPUT_NAME "ubuntu-app-usage")
 
89
target_link_libraries(ubuntu-app-usage ubuntu-launcher)
 
90
install(TARGETS ubuntu-app-usage RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_BINDIR}")
 
91