diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-02-28 23:04:40 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-02-28 23:04:40 -0500 |
commit | ca5f343ac1067eb34b524572c3f4ca609abbce1b (patch) | |
tree | 273c57d05ecdd17d23b292be217fec4f8c178227 /CMakeLists.txt | |
parent | e212b364b969b7918fbe9152dc4b7c04da303d12 (diff) | |
download | abaddon-portaudio-ca5f343ac1067eb34b524572c3f4ca609abbce1b.tar.gz abaddon-portaudio-ca5f343ac1067eb34b524572c3f4ca609abbce1b.zip |
add null implementation for non-gio notifier
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 3d6f73f..0eef4d5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -68,6 +68,8 @@ endif () if (NOT WIN32) target_sources(abaddon PRIVATE src/notifications/notifier_gio.cpp) +else () + target_sources(abaddon PRIVATE src/notifications/notifier_null.cpp) endif () if (IXWebSocket_LIBRARIES) |