Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 544932 | Differences between
and this patch

Collapse All | Expand All

(-)a/languages/cpp/parser/rpp/tests/CMakeLists.txt (+1 lines)
Lines 1-5 Link Here
1
include_directories( ${KDevelop_SOURCE_DIR}/languages/cpp/parser ${CMAKE_CURRENT_SOURCE_DIR}/..  )
1
include_directories( ${KDevelop_SOURCE_DIR}/languages/cpp/parser ${CMAKE_CURRENT_SOURCE_DIR}/..  )
2
2
3
add_executable(pp main.cpp)
3
add_executable(pp main.cpp)
4
ecm_mark_as_test(pp)
4
target_link_libraries(pp  KDev::Tests KDev::Language kdevcpprpp)
5
target_link_libraries(pp  KDev::Tests KDev::Language kdevcpprpp)
5
6
(-)a/projectmanagers/cmake/tests/CMakeLists.txt (+1 lines)
Lines 26-29 kdevcmake_add_test(test_cmakemanager KDev::Language KDev::Tests KDev::Project) Link Here
26
26
27
# this is not a unit test but a testing tool, kept here for convenience
27
# this is not a unit test but a testing tool, kept here for convenience
28
add_executable(kdevprojectopen kdevprojectopen.cpp)
28
add_executable(kdevprojectopen kdevprojectopen.cpp)
29
ecm_mark_as_test(kdevprojectopen)
29
target_link_libraries(kdevprojectopen Qt5::Test KDev::Project KDev::Tests kdevcmakecommon)
30
target_link_libraries(kdevprojectopen Qt5::Test KDev::Project KDev::Tests kdevcmakecommon)
(-)a/projectmanagers/custom-buildsystem/tests/CMakeLists.txt (+1 lines)
Lines 17-20 ki18n_wrap_ui( kcm_uitest_SRCS Link Here
17
                        ../custombuildsystemconfigwidget.ui
17
                        ../custombuildsystemconfigwidget.ui
18
                 )
18
                 )
19
add_executable( kcm_uitest ${kcm_uitest_SRCS} )
19
add_executable( kcm_uitest ${kcm_uitest_SRCS} )
20
ecm_mark_as_test( kcm_uitest )
20
target_link_libraries( kcm_uitest KF5::KDELibs4Support KDev::Project KDev::Tests )
21
target_link_libraries( kcm_uitest KF5::KDELibs4Support KDev::Project KDev::Tests )
(-)a/projectmanagers/custommake/makefileresolver/CMakeLists.txt (-1 / +5 lines)
Lines 9-16 add_library(kdevmakefileresolver STATIC Link Here
9
target_link_libraries(kdevmakefileresolver
9
target_link_libraries(kdevmakefileresolver
10
  KDev::Interfaces KDev::Project
10
  KDev::Interfaces KDev::Project
11
  Qt5::Core Qt5::Gui KDev::Language
11
  Qt5::Core Qt5::Gui KDev::Language
12
  KDev::Tests
13
)
12
)
13
14
if(BUILD_TESTING)
15
    target_link_libraries(kdevmakefileresolver KDev::Tests)
16
endif()
17
14
set_target_properties(kdevmakefileresolver PROPERTIES POSITION_INDEPENDENT_CODE ON)
18
set_target_properties(kdevmakefileresolver PROPERTIES POSITION_INDEPENDENT_CODE ON)
15
19
16
option(BUILD_kdev_makefileresolver "Build the makefile resolver debugging tool" OFF)
20
option(BUILD_kdev_makefileresolver "Build the makefile resolver debugging tool" OFF)

Return to bug 544932