Added Linux desktop entry and tweaked cmake makefile.
This commit is contained in:
parent
273fff6025
commit
dc93e2512a
@ -63,10 +63,10 @@ endif(WIN32)
|
|||||||
# Configure desktop entry for Linux.
|
# Configure desktop entry for Linux.
|
||||||
if(UNIX)
|
if(UNIX)
|
||||||
message(STATUS "[rssguard] Generating desktop entry.")
|
message(STATUS "[rssguard] Generating desktop entry.")
|
||||||
# configure_file (
|
configure_file (
|
||||||
# ${PROJECT_SOURCE_DIR}/resources/desktop/qonverter.desktop.in
|
${PROJECT_SOURCE_DIR}/resources/desktop/rssguard.desktop.in
|
||||||
# ${CMAKE_CURRENT_BINARY_DIR}/resources/desktop/qonverter.desktop
|
${CMAKE_CURRENT_BINARY_DIR}/resources/desktop/rssguard.desktop
|
||||||
# )
|
)
|
||||||
endif(UNIX)
|
endif(UNIX)
|
||||||
|
|
||||||
# Define some useful DEBUG for, ehrm, debug build.
|
# Define some useful DEBUG for, ehrm, debug build.
|
||||||
@ -74,12 +74,13 @@ if(CMAKE_BUILD_TYPE STREQUAL "release" OR CMAKE_BUILD_TYPE STREQUAL "Release" OR
|
|||||||
message(STATUS "[rssguard] A release build (non-debug) is chosen. Debugging outputs are silently ignored.")
|
message(STATUS "[rssguard] A release build (non-debug) is chosen. Debugging outputs are silently ignored.")
|
||||||
set(CMAKE_BUILD_TYPE MinSizeRel)
|
set(CMAKE_BUILD_TYPE MinSizeRel)
|
||||||
else(CMAKE_BUILD_TYPE STREQUAL "release" OR CMAKE_BUILD_TYPE STREQUAL "Release" OR CMAKE_BUILD_TYPE STREQUAL "RELEASE")
|
else(CMAKE_BUILD_TYPE STREQUAL "release" OR CMAKE_BUILD_TYPE STREQUAL "Release" OR CMAKE_BUILD_TYPE STREQUAL "RELEASE")
|
||||||
message(STATUS "[rssguard] A debug build is chosen. -DDEBUG is defined")
|
message(STATUS "[rssguard] A debug build is chosen. -DDEBUG is defined.")
|
||||||
add_definitions(-DDEBUG)
|
add_definitions(-DDEBUG)
|
||||||
set(CMAKE_BUILD_TYPE Debug)
|
set(CMAKE_BUILD_TYPE Debug)
|
||||||
|
|
||||||
# Enable compiler warnings.
|
# Enable compiler warnings.
|
||||||
# See http://stackoverflow.com/questions/2368811/how-to-set-warning-level-in-cmake
|
# See http://stackoverflow.com/questions/2368811/how-to-set-warning-level-in-cmake
|
||||||
|
message(STATUS "[rssguard] Enabling verbose makefile and full warning reports.")
|
||||||
if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX)
|
if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX)
|
||||||
add_definitions(-pedantic -Wall -Wextra)
|
add_definitions(-pedantic -Wall -Wextra)
|
||||||
elseif(CMAKE_BUILD_TOOL MATCHES "(msdev|devenv|nmake)")
|
elseif(CMAKE_BUILD_TOOL MATCHES "(msdev|devenv|nmake)")
|
||||||
@ -157,7 +158,7 @@ set(APP_FORMS
|
|||||||
|
|
||||||
# Add resources.
|
# Add resources.
|
||||||
set(APP_RESOURCES
|
set(APP_RESOURCES
|
||||||
resources/rssguard_resources.qrc
|
resources/rssguard_resources.qrc
|
||||||
)
|
)
|
||||||
|
|
||||||
# Add translations.
|
# Add translations.
|
||||||
|
13
resources/desktop/rssguard.desktop.in
Normal file
13
resources/desktop/rssguard.desktop.in
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
Type=Application
|
||||||
|
Version=1.0
|
||||||
|
Encoding=UTF-8
|
||||||
|
Exec=rssguard
|
||||||
|
Name=RSS Guard
|
||||||
|
GenericName=Simple (yet powerful) calculator
|
||||||
|
GenericName[cs]=Jednoduchá (a přesto mocná) kalkulačka
|
||||||
|
Comment=Simple (yet powerful) calculator with some unusual functions
|
||||||
|
Comment[cs]=Jednoduchá (a přesto mocná) kalkulačka s neobvyklými funkcemi
|
||||||
|
Icon=rssguard
|
||||||
|
Terminal=false
|
||||||
|
Categories=Qt;Office;Network;Utility
|
Loading…
x
Reference in New Issue
Block a user