Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions external/misc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,14 @@ if(LINUX)
)
endif()

add_library(misc STATIC
${misc_SOURCES}
)
if ( "${misc_SOURCES}" )
add_library(misc STATIC
${misc_SOURCES}
)
else()
# Nothing to build
set(MISC_LIBRARIES "" CACHE INTERNAL "")
endif()

elseif(WIN32 OR CYGWIN) # windows

Expand Down