1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
include_directories(../libcore ../libviews)
set(qcachegrind_SRCS qcgmain.cpp qcgtoplevel.cpp qcgconfig.cpp
configdialog.cpp configpage.cpp qtcolorbutton.cpp
generalsettings.cpp sourcesettings.cpp colorsettings.cpp)
qt4_automoc(${qcachegrind_SRCS})
qt4_wrap_ui(qcachegrind_H generalsettings.ui sourcesettings.ui colorsettings.ui)
qt4_add_resources(qcachegrind_RSRC qcachegrind.qrc)
add_executable(qcachegrind ${qcachegrind_SRCS} ${qcachegrind_H} ${qcachegrind_RSRC})
target_link_libraries(qcachegrind
core views
${QT_QTGUI_LIBRARY} ${QT_QTCORE_LIBRARY}
${QT_QTDBUS_LIBRARY})
# do not install example code...
# install(TARGETS qcachegrind ${INSTALL_TARGETS_DEFAULT_ARGS} )
|