~pete-woods/unity-action-api/automatic-quit-action

« back to all changes in this revision

Viewing changes to src/CMakeLists.txt

  • Committer: Antti Kaijanmäki
  • Date: 2013-06-06 14:34:12 UTC
  • Revision ID: antti.kaijanmaki@canonical.com-20130606143412-twyy3zikfuzfpnaq
Initial debian packaging.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
# become one, change tools so they use the plugin
8
8
# instead of calling the classes directly.
9
9
 
10
 
add_library(unity-action SHARED
 
10
add_library(unity-action-qt SHARED
11
11
${CORE_SRCS}
12
12
)
13
13
 
14
 
qt5_use_modules(unity-action Qml)
 
14
qt5_use_modules(unity-action-qt Core)
15
15
 
16
16
install(
17
 
  TARGETS unity-action
18
 
  ARCHIVE DESTINATION ${LIBDIR}
 
17
  TARGETS unity-action-qt
 
18
  ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
19
19
  RUNTIME DESTINATION bin
20
 
  LIBRARY DESTINATION ${LIBDIR}
 
20
  LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
21
21
)
 
22
 
 
23
set_target_properties(unity-action-qt PROPERTIES SOVERSION 0.0.0)