Warning, /plasma/drkonqi/src/kdbgwin/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 include_directories(${CMAKE_CURRENT_SOURCE_DIR}/..)
0002 
0003 set(kdbgwin_SRCS
0004     common.h
0005     main.cpp
0006     kdbgwin_process.h
0007     kdbgwin_process.cpp
0008     abstract_generator.h
0009     abstract_generator.cpp
0010     callbacks.h
0011     callbacks.cpp
0012     outputters.h
0013     outputters.cpp
0014     ${CMAKE_CURRENT_BINARY_DIR}/../drkonqi_debug.cpp
0015 )
0016 
0017 set(COMMON_LIBS dbghelp psapi shlwapi Qt${QT_MAJOR_VERSION}::Core)
0018 
0019 if(MINGW)
0020     add_executable(kdbgwin ${kdbgwin_SRCS} mingw_generator.h mingw_generator.cpp)
0021     target_link_libraries(kdbgwin PRIVATE ${COMMON_LIBS} bfd iberty intl ZLIB::ZLIB)
0022 endif()
0023 if(MSVC OR ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel"))
0024     add_executable(kdbgwin ${kdbgwin_SRCS} msvc_generator.h msvc_generator.cpp)
0025     target_link_libraries(kdbgwin ${COMMON_LIBS})
0026 endif()
0027 
0028 install(TARGETS kdbgwin DESTINATION ${KDE_INSTALL_LIBEXECDIR})