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.
lximage-qt-packaging/src/CMakeLists.txt

88 lines
2.2 KiB

# set visibility to hidden to hide symbols, unlesss they're exporeted manually in the code
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-exceptions")
include_directories(
${X11_INCLUDE_DIR}
${XFIXES_INCLUDE_DIRS}
)
# For some unknown reasons these are required for build on FreeBSD
link_directories(
${QT_LIBRARY_DIR}
${GLIB_LIBRARY_DIRS}
)
set(lximage-qt_SRCS
lximage-qt.cpp
mainwindow.cpp
preferencesdialog.cpp
application.cpp
imageview.cpp
modelfilter.cpp
job.cpp
loadimagejob.cpp
saveimagejob.cpp
screenshotdialog.cpp
settings.cpp
)
qt5_add_dbus_adaptor(lximage-qt_SRCS
org.lxde.LxImage.Application.xml
application.h
LxImage::Application
applicationadaptor
ApplicationAdaptor
)
set(lximage-qt_UIS
mainwindow.ui
preferencesdialog.ui
screenshotdialog.ui
)
qt5_wrap_ui(lximage-qt_UI_H ${lximage-qt_UIS})
# add translation for lximage-qt
file(GLOB TS_FILES translations/*.ts)
option(UPDATE_TRANSLATIONS "Update source translation translations/*.ts files")
if(UPDATE_TRANSLATIONS)
qt5_create_translation(QM_FILES ${lximage-qt_SRCS} ${lximage-qt_UI_H} ${TS_FILES})
else()
qt5_add_translation(QM_FILES ${TS_FILES})
endif()
add_custom_target (lximage-qt_translations DEPENDS ${QM_FILES})
install(FILES ${QM_FILES} DESTINATION share/lximage-qt/translations)
# prevent the generated files from being deleted during make clean
set_directory_properties(PROPERTIES CLEAN_NO_CUSTOM true)
# process desktop entry files
include(LXQtTranslateDesktop)
file(GLOB desktop_files_in ../data/*.desktop.in)
lxqt_translate_desktop(desktop_files SOURCES ${desktop_files_in})
install(FILES ${desktop_files} DESTINATION share/applications)
add_executable(lximage-qt
${lximage-qt_SRCS}
${lximage-qt_UI_H}
${desktop_files}
${QM_FILES}
)
add_definitions(
-DLXIMAGE_DATA_DIR="${CMAKE_INSTALL_PREFIX}/share/lximage-qt"
-DLXIMAGE_VERSION="${LXIMAGE_VERSION}"
)
set(QT_LIBRARIES Qt5::Widgets Qt5::Core Qt5::DBus Qt5::PrintSupport Qt5::X11Extras)
target_link_libraries(lximage-qt
fm-qt
${QT_LIBRARIES}
${EXIF_LIBRARIES}
${X11_LIBRARIES}
${XFIXES_LIBRARIES}
)
install(TARGETS lximage-qt RUNTIME DESTINATION bin)