* AbstractLogger base implementation Signed-off-by: Haris Gušić <harisgusic.dev@gmail.com> * Switch most system notifications to AbstractLogger Signed-off-by: Haris Gušić <harisgusic.dev@gmail.com> * Make CLI parser use AbstractLogger Signed-off-by: Haris Gušić <harisgusic.dev@gmail.com> * Fix annoying QPainter warning in QtColorWidgets Signed-off-by: Haris Gušić <harisgusic.dev@gmail.com> * Remove obsolete TODOs Signed-off-by: Haris Gušić <harisgusic.dev@gmail.com> * Fix failing windows build Signed-off-by: Haris Gušić <harisgusic.dev@gmail.com> * Add missing #include <cassert> Signed-off-by: Haris Gušić <harisgusic.dev@gmail.com>
31 lines
670 B
CMake
31 lines
670 B
CMake
# Required to generate MOC
|
|
target_sources(
|
|
flameshot
|
|
PRIVATE abstractlogger.h
|
|
filenamehandler.h
|
|
screengrabber.h
|
|
systemnotification.h
|
|
valuehandler.h
|
|
request.h
|
|
strfparse.h
|
|
)
|
|
|
|
target_sources(
|
|
flameshot
|
|
PRIVATE abstractlogger.cpp
|
|
filenamehandler.cpp
|
|
screengrabber.cpp
|
|
confighandler.cpp
|
|
systemnotification.cpp
|
|
valuehandler.cpp
|
|
screenshotsaver.cpp
|
|
globalvalues.cpp
|
|
desktopfileparse.cpp
|
|
desktopinfo.cpp
|
|
pathinfo.cpp
|
|
colorutils.cpp
|
|
history.cpp
|
|
strfparse.cpp
|
|
request.cpp
|
|
)
|