Skip to content
Snippets Groups Projects
Commit df057621 authored by Merov Linden's avatar Merov Linden
Browse files

STORM-987: Make building of llimage_libtest optional so that builf failure on...

STORM-987: Make building of llimage_libtest optional so that builf failure on Linux doesn't block autobuild merge
parent 0d1307c7
No related branches found
No related tags found
No related merge requests found
# -*- cmake -*- # -*- cmake -*-
add_subdirectory(llui_libtest) add_subdirectory(llui_libtest)
add_subdirectory(llimage_libtest) if (LLIMAGE_LIBTEST)
add_subdirectory(llimage_libtest)
endif (LLIMAGE_LIBTEST)
...@@ -53,9 +53,9 @@ if (DARWIN) ...@@ -53,9 +53,9 @@ if (DARWIN)
find_library(COREFOUNDATION_LIBRARY CoreFoundation) find_library(COREFOUNDATION_LIBRARY CoreFoundation)
set(OS_LIBRARIES ${COREFOUNDATION_LIBRARY}) set(OS_LIBRARIES ${COREFOUNDATION_LIBRARY})
elseif (WINDOWS) elseif (WINDOWS)
# set(OS_LIBRARIES) set(OS_LIBRARIES)
elseif (LINUX) elseif (LINUX)
# set(OS_LIBRARIES) set(OS_LIBRARIES)
else (DARWIN) else (DARWIN)
message(FATAL_ERROR "Unknown platform") message(FATAL_ERROR "Unknown platform")
endif (DARWIN) endif (DARWIN)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment