From 1b290c0d84d92fd28fc1f64f33bf4455d73e2e2e Mon Sep 17 00:00:00 2001 From: Maxim Biro Date: Fri, 9 Jun 2017 23:18:43 -0400 Subject: [PATCH] Fix Windows build --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 41c5f80aa7..a9be3f8814 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -400,10 +400,10 @@ endfunction() if(BUILD_TOXAV) add_c_executable(auto_monolith_test auto_tests/monolith_test.c) target_link_modules(auto_monolith_test - ${toxcore_PKGCONFIG_LIBS} ${LIBSODIUM_LIBRARIES} ${OPUS_LIBRARIES} - ${VPX_LIBRARIES}) + ${VPX_LIBRARIES} + ${toxcore_PKGCONFIG_LIBS}) add_test(NAME monolith COMMAND auto_monolith_test) endif()