Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mumble-voip/mumble.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/TestCryptographicHash/CMakeLists.txt')
-rw-r--r--src/tests/TestCryptographicHash/CMakeLists.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tests/TestCryptographicHash/CMakeLists.txt b/src/tests/TestCryptographicHash/CMakeLists.txt
new file mode 100644
index 000000000..c18a18392
--- /dev/null
+++ b/src/tests/TestCryptographicHash/CMakeLists.txt
@@ -0,0 +1,12 @@
+# Copyright 2019-2020 The Mumble Developers. All rights reserved.
+# Use of this source code is governed by a BSD-style license
+# that can be found in the LICENSE file at the root of the
+# Mumble source tree or at <https://www.mumble.info/LICENSE>.
+
+add_executable(TestCryptographicHash TestCryptographicHash.cpp)
+
+set_target_properties(TestCryptographicHash PROPERTIES AUTOMOC ON)
+
+target_link_libraries(TestCryptographicHash PRIVATE shared Qt5::Test)
+
+add_test(NAME TestCryptographicHash COMMAND $<TARGET_FILE:TestCryptographicHash>)