~ubuntu-branches/ubuntu/saucy/libkdegames/saucy-updates

« back to all changes in this revision

Viewing changes to declarativeimports/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell, Rohan Garg, Philip Muškovac, Jonathan Riddell
  • Date: 2013-06-21 01:42:38 UTC
  • mfrom: (1.2.3)
  • Revision ID: package-import@ubuntu.com-20130621014238-mk0kx5llg3m15ua6
Tags: 4:4.10.80-0ubuntu1
[ Rohan Garg ]
* New upstream release

[ Philip Muškovac ]
* Add Qml imports to libkdegames6.install 
* Add new symbols to libkdegames6.symbols

[ Jonathan Riddell ]
* New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
project(corebindings)
 
2
 
 
3
include_directories( ${CMAKE_SOURCE_DIR}/libkdegames )
 
4
 
 
5
set(corebindings_SRCS
 
6
    corebindingsplugin.cpp
 
7
    )
 
8
 
 
9
INCLUDE_DIRECTORIES(
 
10
        ${CMAKE_SOURCE_DIR}
 
11
        ${CMAKE_BINARY_DIR}
 
12
        ${KDE4_INCLUDES}
 
13
)
 
14
 
 
15
qt4_automoc(${corebindings_SRCS})
 
16
 
 
17
add_library(corebindingsplugin SHARED ${corebindings_SRCS})
 
18
target_link_libraries(corebindingsplugin kdegames ${QT_QTDECLARATIVE_LIBRARY})
 
19
 
 
20
install(TARGETS corebindingsplugin DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/games/core)
 
21
install(DIRECTORY qml/ DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/games/core)