~ubuntu-branches/ubuntu/precise/kalzium/precise

« back to all changes in this revision

Viewing changes to libscience/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Philip Muškovac
  • Date: 2011-07-03 12:28:58 UTC
  • Revision ID: james.westby@ubuntu.com-20110703122858-q1yyxncs89e4w0hs
Tags: upstream-4.6.90+repack
Import upstream version 4.6.90+repack

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
add_subdirectory(data)
 
2
add_subdirectory(tests)
 
3
 
 
4
set(science_LIB_SRCS
 
5
   element.cpp
 
6
   spectrum.cpp
 
7
   isotope.cpp
 
8
   spectrumparser.cpp
 
9
   elementparser.cpp
 
10
   isotopeparser.cpp
 
11
   chemicaldataobject.cpp
 
12
   moleculeparser.cpp
 
13
   parser.cpp
 
14
   psetables.cpp
 
15
)
 
16
 
 
17
 
 
18
kde4_add_library(science SHARED ${science_LIB_SRCS})
 
19
 
 
20
target_link_libraries(science  ${KDE4_KDECORE_LIBS} ${QT_QTXML_LIBRARY} ${KDE4_KUNITCONVERSION_LIBRARY})
 
21
 
 
22
set_target_properties(science PROPERTIES VERSION ${GENERIC_LIB_VERSION} SOVERSION ${GENERIC_LIB_SOVERSION} )
 
23
install(TARGETS science  ${INSTALL_TARGETS_DEFAULT_ARGS})
 
24
 
 
25
install(FILES
 
26
   chemicaldataobject.h
 
27
   element.h
 
28
   elementparser.h
 
29
   isotope.h
 
30
   isotopeparser.h
 
31
   libkdeedu_science_export.h
 
32
   moleculeparser.h
 
33
   parser.h
 
34
   spectrum.h
 
35
   spectrumparser.h
 
36
   psetables.h
 
37
   DESTINATION ${INCLUDE_INSTALL_DIR}/libkdeedu  COMPONENT Devel
 
38
)