Skip to content

Commit 877d1c7

Browse files
committed
Fix build on Alpine Linux. issues 150, 319, 344.
1 parent ba0313c commit 877d1c7

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

external/misc/CMakeLists.txt

+9-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,15 @@ if(LINUX)
3232
)
3333
endif()
3434

35-
add_library(misc STATIC
36-
${misc_SOURCES}
37-
)
35+
# add_library doesn't like to get an empty source file list.
36+
37+
if($misc_SOURCES)
38+
add_library(misc STATIC
39+
${misc_SOURCES}
40+
)
41+
else()
42+
set(MISC_LIBRARIES "" CACHE INTERNAL "")
43+
endif()
3844

3945
elseif(WIN32 OR CYGWIN) # windows
4046

0 commit comments

Comments
 (0)