ac951b2afa
Some checks failed
ContinuousDelivery / linux-ubuntu (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android]) (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android]) (push) Has been cancelled
ContinuousDelivery / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android]) (push) Has been cancelled
ContinuousDelivery / windows (push) Has been cancelled
ContinuousDelivery / windows-asan (push) Has been cancelled
ContinuousIntegration / linux (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:arm64-v8a vcpkg_toolkit:arm64-android]) (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:armeabi-v7a vcpkg_toolkit:arm-neon-android]) (push) Has been cancelled
ContinuousIntegration / android (map[ndk_abi:x86_64 vcpkg_toolkit:x64-android]) (push) Has been cancelled
ContinuousIntegration / macos (push) Has been cancelled
ContinuousIntegration / windows (push) Has been cancelled
ContinuousDelivery / release (push) Has been cancelled
Merge commit '261d2e53b7a513de7eb35e022fe3b2ae4efa835f'
27 lines
609 B
Makefile
27 lines
609 B
Makefile
if BUILD_TESTS
|
|
TEST_LIB = misc_tools
|
|
endif
|
|
if BUILD_TESTING
|
|
TEST_LIB = misc_tools
|
|
endif
|
|
|
|
noinst_LTLIBRARIES += libmisc_tools.la
|
|
libmisc_tools_la_SOURCES = ../testing/misc_tools.c ../testing/misc_tools.h
|
|
|
|
if BUILD_TESTING
|
|
|
|
noinst_PROGRAMS += Messenger_test
|
|
|
|
Messenger_test_SOURCES = \
|
|
../testing/Messenger_test.c
|
|
|
|
Messenger_test_CFLAGS = $(LIBSODIUM_CFLAGS)
|
|
|
|
Messenger_test_LDADD = $(LIBSODIUM_LDFLAGS) \
|
|
libmisc_tools.la \
|
|
libtoxcore.la \
|
|
$(LIBSODIUM_LIBS) \
|
|
$(WINSOCK2_LIBS)
|
|
|
|
endif
|