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

« back to all changes in this revision

Viewing changes to bear-engine/core/src/time/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( TIME_TARGET_NAME bear_time )
 
1
set( TIME_TARGET_NAME bear_time )
2
2
 
3
3
#-------------------------------------------------------------------------------
4
 
SET( TIME_SOURCE_FILES
 
4
set( TIME_SOURCE_FILES
5
5
  code/time.cpp
6
6
)
7
7
 
8
 
ADD_LIBRARY(
 
8
add_library(
9
9
  ${TIME_TARGET_NAME}
10
10
  ${BEAR_ENGINE_CORE_LINK_TYPE}
11
11
  ${TIME_SOURCE_FILES}
12
12
  )
13
13
 
14
 
INSTALL(
 
14
set_target_properties(
 
15
  ${TIME_TARGET_NAME}
 
16
  PROPERTIES
 
17
  INSTALL_RPATH "${CMAKE_INSTALL_PREFIX}/${BEAR_ENGINE_INSTALL_LIBRARY_DIR}"
 
18
  )
 
19
 
 
20
install(
15
21
  TARGETS ${TIME_TARGET_NAME}
16
22
  DESTINATION ${BEAR_ENGINE_INSTALL_LIBRARY_DIR}
17
23
  )