Commit 23cd3cec authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

Remove STATIC from ADD_CONVENIENCE_LIBRARY on 2 places

parent c65a3870
......@@ -17,4 +17,4 @@
INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR}/include)
SET(REGEX_SOURCES regcomp.c regerror.c regexec.c regfree.c reginit.c)
ADD_CONVENIENCE_LIBRARY(regex STATIC ${REGEX_SOURCES})
ADD_CONVENIENCE_LIBRARY(regex ${REGEX_SOURCES})
......@@ -24,4 +24,4 @@ SET(STRINGS_SOURCES bchange.c bcmp.c bfill.c bmove512.c bmove_upp.c ctype-big5.c
strtod.c strtol.c strtoll.c strtoul.c strtoull.c strxmov.c strxnmov.c xml.c
my_strchr.c strcont.c strinstr.c strnlen.c strappend.c)
ADD_CONVENIENCE_LIBRARY(strings STATIC ${STRINGS_SOURCES})
ADD_CONVENIENCE_LIBRARY(strings ${STRINGS_SOURCES})
......@@ -27,6 +27,6 @@ MACRO (MY_ADD_TEST name)
ENDMACRO()
FOREACH(testname bitmap base64 my_vsnprintf my_atomic)
FOREACH(testname bitmap base64 my_vsnprintf my_atomic lf)
MY_ADD_TEST(${testname})
ENDFOREACH()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment