~mterry/url-dispatcher/snap-support

« back to all changes in this revision

Viewing changes to service/url-overlay/CMakeLists.txt

  • Committer: Michael Terry
  • Date: 2016-11-08 22:14:54 UTC
  • mfrom: (93.1.2 url-dispatcher)
  • Revision ID: michael.terry@canonical.com-20161108221454-e777vqecva4helrm
MergeĀ fromĀ trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
###########################
 
3
# URL Overlay Exec Tool
 
4
###########################
 
5
 
 
6
add_executable(url-overlay-exec-tool exec-tool.c ../recoverable-problem.c)
 
7
set_target_properties(url-overlay-exec-tool PROPERTIES OUTPUT_NAME "exec-tool")
 
8
target_link_libraries(url-overlay-exec-tool ${GIO2_LIBRARIES} ${UBUNTU_APP_LAUNCH_LIBRARIES} ${CLICK_LIBRARIES})
 
9
 
 
10
install(
 
11
  TARGETS url-overlay-exec-tool
 
12
  RUNTIME DESTINATION "${CMAKE_INSTALL_FULL_LIBEXECDIR}/ubuntu-app-launch/url-overlay"
 
13
)
 
14