fix: #1144 by forcing misc_tools to be a static lib

This commit is contained in:
Green Sky 2022-10-04 15:13:16 +02:00
parent 873896058f
commit e1c38b40d6
No known key found for this signature in database

View File

@ -2,7 +2,7 @@
set(misc_tools_SOURCES
misc_tools.c
misc_tools.h)
add_library(misc_tools ${misc_tools_SOURCES})
add_library(misc_tools STATIC ${misc_tools_SOURCES})
target_link_modules(misc_tools toxcore)
################################################################################