~ubuntu-branches/debian/sid/kdevelop/sid

« back to all changes in this revision

Viewing changes to languages/cpp/parser/rpp/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jeremy Lainé
  • Date: 2010-05-05 07:21:55 UTC
  • mfrom: (1.2.3 upstream) (5.1.2 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100505072155-h78lx19pu04sbhtn
Tags: 4:4.0.0-2
* Upload to unstable (Closes: #579947, #481832).
* Acknowledge obsolete NMU fixes (Closes: #562410, #546961).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
add_subdirectory( tests )
 
3
 
 
4
########### next target ###############
 
5
 
 
6
set(kdevcpprpp_LIB_SRCS
 
7
    pp-stream.cpp
 
8
    pp-macro-expander.cpp
 
9
    pp-scanner.cpp
 
10
    pp-macro.cpp
 
11
    pp-engine.cpp
 
12
    pp-internal.cpp
 
13
    pp-environment.cpp
 
14
    pp-location.cpp
 
15
    preprocessor.cpp
 
16
    chartools.cpp
 
17
    macrorepository.cpp
 
18
)
 
19
 
 
20
# Note: This library doesn't follow API/ABI/BC rules and shouldn't have a SOVERSION
 
21
#       Its only purpose is to support the plugin without needing to add all source files
 
22
#       to the plugin target
 
23
kde4_add_library(kdev4cpprpp SHARED ${kdevcpprpp_LIB_SRCS})
 
24
target_link_libraries(kdev4cpprpp ${KDE4_KDECORE_LIBS} ${KDEVPLATFORM_LANGUAGE_LIBRARIES} ${KDE4_KTEXTEDITOR_LIBS} )
 
25
install(TARGETS kdev4cpprpp ${INSTALL_TARGETS_DEFAULT_ARGS} )
 
26
 
 
27
########### install files ###############
 
28
 
 
29
# install(FILES
 
30
#     pp-engine.h
 
31
#     pp-internal.h
 
32
#     pp-macro-expander.h
 
33
#     pp-macro.h
 
34
#     pp-scanner.h
 
35
#     pp-stream.h
 
36
#     pp-environment.h
 
37
#     preprocessor.h
 
38
#     DESTINATION ${INCLUDE_INSTALL_DIR}/kdevelop/rpp
 
39
# )