We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c73a6b commit ab834f3Copy full SHA for ab834f3
external/misc/CMakeLists.txt
@@ -32,9 +32,22 @@ if(LINUX)
32
)
33
endif()
34
35
- add_library(misc STATIC
36
- ${misc_SOURCES}
37
- )
+ # Add_library doesn't like to get an empty source file list.
+ # I tried several variations on this theme to test whether the list
+ # was not empty and was not successful in getting it to work
38
+ # on both Alpine and RPi.
39
+ #if("${misc_SOURCES}")
40
+ # This is less elegant and less maintainable but it works.
41
+
42
+ if ((NOT HAVE_STRLCPY) OR (NOT HAVE_STRLCAT))
43
+ add_library(misc STATIC
44
+ ${misc_SOURCES}
45
+ )
46
+ else()
47
+ set(MISC_LIBRARIES "" CACHE INTERNAL "")
48
+ endif()
49
50
51
52
elseif(WIN32 OR CYGWIN) # windows
53
0 commit comments