mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-25 11:22:52 +00:00
28 lines
846 B
CMake
28 lines
846 B
CMake
project(homerun)
|
|
|
|
# Packaging
|
|
set(HOMERUN_VERSION "1.2.5")
|
|
|
|
# Compile options
|
|
add_definitions(${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
|
|
add_definitions(-DQT_USE_FAST_CONCATENATION -DQT_USE_FAST_OPERATOR_PLUS)
|
|
add_definitions(-std=c++0x)
|
|
include_directories(${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${KDE4_INCLUDES})
|
|
|
|
# configuration file
|
|
configure_file(homerun_config.h.in ${CMAKE_BINARY_DIR}/homerun_config.h @ONLY)
|
|
|
|
# config/
|
|
install(FILES config/homerunrc DESTINATION ${CONFIG_INSTALL_DIR})
|
|
install(FILES config/homerunkickerrc DESTINATION ${CONFIG_INSTALL_DIR})
|
|
|
|
install(FILES data/favoriteapps.xml DESTINATION ${DATA_INSTALL_DIR}/homerun/)
|
|
|
|
add_subdirectory(lib)
|
|
add_subdirectory(components)
|
|
add_subdirectory(fullscreen)
|
|
add_subdirectory(fixes)
|
|
#add_subdirectory(tests)
|
|
add_subdirectory(icons)
|
|
add_subdirectory(kicker)
|
|
add_subdirectory(plugins)
|