some minor whitspace fixes and other changes
This commit is contained in:
parent
defebd7c2c
commit
8479d54742
|
@ -12,7 +12,7 @@ include_directories(
|
|||
${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR}
|
||||
${QT_QTCORE_INCLUDE_DIR} ${QT_QTGUI_INCLUDE_DIR}
|
||||
${QT_QTNETWORK_INCLUDE_DIR} ${QT_QTDBUS_INCLUDE_DIR}
|
||||
${CMAKE_SOURCE_DIR}/3party/gntp-send/headers)
|
||||
${CMAKE_SOURCE_DIR}/3party/gntp-send/headers)
|
||||
|
||||
|
||||
if (CMAKE_COMPILER_IS_GNUCXX)
|
||||
|
@ -39,7 +39,7 @@ if (CMAKE_COMPILER_IS_GNUCXX)
|
|||
endif(CMAKE_COMPILER_IS_GNUCXX)
|
||||
|
||||
if(MSVC)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Zc:wchar_t-")
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /Zc:wchar_t-")
|
||||
endif(MSVC)
|
||||
|
||||
option(WITH_FREEDESKTOP_FRONTEND "Build the freedesktop frontend" OFF)
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
set ( SnoreNotify_SRCS
|
||||
notification.cpp
|
||||
snoreserver.cpp
|
||||
application.cpp
|
||||
set ( SnoreNotify_SRCS
|
||||
notification.cpp
|
||||
snoreserver.cpp
|
||||
application.cpp
|
||||
interface.cpp
|
||||
utils.cpp
|
||||
trayiconnotifer.cpp
|
||||
|
@ -19,7 +19,7 @@ set ( SnoreNotify_HDR
|
|||
)
|
||||
|
||||
automoc4_add_library( snorecore SHARED ${SnoreNotify_SRCS})
|
||||
set_target_properties( snorecore PROPERTIES OUTPUT_NAME "snore" COMPILE_FLAGS "-DSNORECORE_DLL" )
|
||||
set_target_properties( snorecore PROPERTIES OUTPUT_NAME "snore" DEFINE_SYMBOL "SNORECORE_DLL" )
|
||||
target_link_libraries ( snorecore ${QT_QTCORE_LIBRARY} ${QT_QTGUI_LIBRARY} )
|
||||
|
||||
|
||||
|
|
|
@ -5,10 +5,10 @@ if( WITH_GROWL_BACKEND )
|
|||
set( GROWL__SRC
|
||||
growl_backend.cpp
|
||||
)
|
||||
|
||||
|
||||
automoc4_add_library(growl_backend MODULE ${GROWL__SRC} )
|
||||
target_link_libraries(growl_backend snorecore ${QT_QTCORE_LIBRARY} ${GROWL_CPP} growl_cpp )
|
||||
set_target_properties( growl_backend PROPERTIES COMPILE_FLAGS "-DGROWL_CPP_STATIC -DGROWL_STATIC" )
|
||||
set_target_properties( growl_backend PROPERTIES COMPILE_FLAGS "-DGROWL_CPP_STATIC -DGROWL_STATIC" )
|
||||
|
||||
install(TARGETS growl_backend ${PLUGIN_INSTALL_PATH})
|
||||
|
||||
|
|
Loading…
Reference in New Issue