1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

fix(build): do not build unix-specific test on Windows

Modify CMake file to build posixsignalnotifier test only on
UNIX-like systems.
This commit is contained in:
Vincas Dargis 2017-10-14 19:30:50 +03:00
parent 2f1bf10780
commit d69023c9d7

View File

@ -22,4 +22,6 @@ auto_test(core toxpk)
auto_test(core toxid)
auto_test(chatlog textformatter)
auto_test(net toxmedata)
auto_test(platform posixsignalnotifier)
if (UNIX)
auto_test(platform posixsignalnotifier)
endif()