Guest User

Untitled

a guest
Jul 23rd, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. project(tutorial6)
  2.  
  3. find_package(KDE4 REQUIRED)
  4. include_directories(${KDE4_INCLUDES})
  5.  
  6. set(tutorial6_SRCS
  7. main.cpp
  8. mainwindow.cpp
  9. dragwidget.cpp
  10. )
  11.  
  12. kde4_add_executable(tutorial6 ${tutorial6_SRCS})
  13.  
  14. target_link_libraries(tutorial6 ${KDE4_KDEUI_LIBS}
  15. ${KDE4_KIO_LIBS})
  16.  
  17. install(TARGETS tutorial6 DESTINATION ${BIN_INSTALL_DIR})
Add Comment
Please, Sign In to add comment