~ubuntu-branches/ubuntu/trusty/plee-the-bear/trusty-proposed

« back to all changes in this revision

Viewing changes to bear-engine/core/src/communication/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Julien Jorge, Julien Jorge
  • Date: 2010-11-17 20:13:34 UTC
  • mfrom: (6.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20101117201334-o4dp7uq437to7oxb
Tags: 0.5.1-1
[ Julien Jorge ]
* New upstream release (Closes: #565062, #546514).
* Add armhf architecture (Closes: #604689).
* Remove patches integrated upstream: rpath-editors.diff, rpath-game.diff,
  editors-menu-section.diff.
* Bump the Standard-Version, no changes.
* Update my email address.
* Set build dependency of libclaw to 1.6.0.
* Add the missing ${misc:Depends} in debian/control.
* List gettext translations in bear-factory.install and plee-the-bear.install.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
SET( COMMUNICATION_TARGET_NAME bear_communication )
 
1
set( COMMUNICATION_TARGET_NAME bear_communication )
2
2
 
3
3
#-------------------------------------------------------------------------------
4
 
SET( COMMUNICATION_SOURCE_FILES
 
4
set( COMMUNICATION_SOURCE_FILES
5
5
  code/post_office.cpp
6
6
  code/message.cpp
7
7
  code/messageable.cpp
8
8
)
9
9
 
10
 
ADD_LIBRARY(
 
10
add_library(
11
11
  ${COMMUNICATION_TARGET_NAME}
12
12
  ${BEAR_ENGINE_CORE_LINK_TYPE}
13
13
  ${COMMUNICATION_SOURCE_FILES}
14
14
  )
15
15
 
16
 
INSTALL(
 
16
set_target_properties(
 
17
  ${COMMUNICATION_TARGET_NAME}
 
18
  PROPERTIES
 
19
  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_ENGINE_INSTALL_LIBRARY_DIR}"
 
20
  )
 
21
 
 
22
install(
17
23
  TARGETS ${COMMUNICATION_TARGET_NAME}
18
24
  DESTINATION ${BEAR_ENGINE_INSTALL_LIBRARY_DIR}
19
25
  )
20
26
 
21
 
TARGET_LINK_LIBRARIES(
 
27
target_link_libraries(
22
28
  ${COMMUNICATION_TARGET_NAME}
23
29
  ${CLAW_LOGGER_LIBRARIES}
24
30
  )