include_directories(
   ${CMAKE_SOURCE_DIR}
   ${CMAKE_BINARY_DIR}
   ${KDE4_INCLUDES}
   )
 
# We add our source code here
set(inputwizard_SRCS 
	main.cpp
	wizarddialog.cpp
	wizardpage.cpp
)

kde4_add_executable(kbluetooth4-inputwizard ${inputwizard_SRCS})

target_link_libraries(kbluetooth4-inputwizard
                      ${KDE4_KIO_LIBRARY} ${KDE4_KDEUI_LIBS} ${KDE4_SOLID_LIBS} solidcontrol)
 
install(TARGETS kbluetooth4-inputwizard
        DESTINATION ${KDE4_BIN_INSTALL_DIR})

