aboutsummaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index bb95bd0..32a4b87 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -19,6 +19,7 @@ find_package(Qt6 REQUIRED COMPONENTS Core Gui Network Widgets Concurrent WebSock
find_package(PkgConfig REQUIRED)
pkg_check_modules(Vorbisfile REQUIRED IMPORTED_TARGET vorbisfile)
pkg_check_modules(Opusfile REQUIRED IMPORTED_TARGET opusfile)
+pkg_check_modules(Sodium REQUIRED IMPORTED_TARGET libsodium)
qt_add_executable(Attorney_Online
src/aoapplication.cpp
@@ -112,6 +113,8 @@ qt_add_executable(Attorney_Online
third_party/miniaudio_libvorbis.c
third_party/miniaudio_libopus.h
third_party/miniaudio_libopus.c
+ src/keyring.h
+ src/keyring.cpp
src/ext_packet.h
src/ext_packet.cpp
src/vli.h
@@ -156,6 +159,7 @@ target_link_libraries(Attorney_Online PRIVATE
Qt${QT_VERSION_MAJOR}::UiTools
PkgConfig::Vorbisfile
PkgConfig::Opusfile
+ PkgConfig::Sodium
)
if(AO_ENABLE_DISCORD_RPC)