You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
748 B
36 lines
748 B
include_directories(
|
|
${CMAKE_CURRENT_BINARY_DIR}
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
|
${CMAKE_BINARY_DIR}/include
|
|
)
|
|
|
|
##### tqtconfig (executable)
|
|
|
|
set( target tqtconfig )
|
|
|
|
set( ${target}_SOURCES
|
|
colorbutton.cpp main.cpp previewframe.cpp previewwidget.cpp mainwindow.cpp
|
|
paletteeditoradvanced.cpp
|
|
|
|
mainwindowbase.ui paletteeditoradvancedbase.ui previewwidgetbase.ui
|
|
)
|
|
|
|
tde_add_executable( ${target}
|
|
SOURCES ${${target}_SOURCES}
|
|
LINK tqt-mt-shared
|
|
DESTINATION ${BIN_INSTALL_DIR}
|
|
DEPENDENCIES tquic
|
|
)
|
|
tqt_automoc( ${target} )
|
|
|
|
tde_create_translated_desktop(
|
|
SOURCE ${target}.desktop
|
|
DESTINATION ${QT_INSTALL_SHARE}/applications
|
|
)
|
|
|
|
install(
|
|
FILES images/appicon.png
|
|
DESTINATION ${QT_INSTALL_SHARE}/pixmaps
|
|
RENAME ${target}.png
|
|
)
|