Add line for debugging
[kdevelopdvcssupport.git] / project / CMakeLists.txt
blob0b829c72e7abfeb69418fde2a4d644c9ceac46d9
3 add_definitions( -DKDE_DEFAULT_DEBUG_AREA=9503 )
4 set(kdevplatformproject_LIB_SRCS
5     projectmodel.cpp
6     projectconfigskeleton.cpp
7     importprojectjob.cpp
8     interfaces/iprojectbuilder.cpp
9     interfaces/iprojectfilemanager.cpp
10     interfaces/ibuildsystemmanager.cpp
14 kde4_add_library(kdevplatformproject SHARED ${kdevplatformproject_LIB_SRCS})
15 target_link_libraries(kdevplatformproject ${QT_QTDESIGNER_LIBRARY} kdevplatforminterfaces ${KDE4_KIO_LIBS})
16 set_target_properties(kdevplatformproject PROPERTIES VERSION ${KDEVPLATFORM_LIB_VERSION} SOVERSION ${KDEVPLATFORM_LIB_SOVERSION})
17 install(TARGETS kdevplatformproject ${INSTALL_TARGETS_DEFAULT_ARGS} )
19 ########### install files ###############
21 install(FILES
22     interfaces/iprojectbuilder.h
23     interfaces/iprojectfilemanager.h
24     interfaces/ibuildsystemmanager.h
25     DESTINATION ${INCLUDE_INSTALL_DIR}/kdevplatform/project/interfaces
26  )
28 install(FILES
29     importprojectjob.h
30     projectconfigskeleton.h
31     projectmodel.h
32     projectkcmodule.h
33     projectexport.h
34     DESTINATION ${INCLUDE_INSTALL_DIR}/kdevplatform/project
35  )