blob: 599787ad21a7f7f73834b57dcca55501945a064d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# -*- cmake -*-
include(Linking)
include(Prebuilt)
if (STANDALONE)
set(EXAMPLEPLUGIN OFF CACHE BOOL
"EXAMPLEPLUGIN support for the llplugin/llmedia test apps.")
else (STANDALONE)
set(EXAMPLEPLUGIN ON CACHE BOOL
"EXAMPLEPLUGIN support for the llplugin/llmedia test apps.")
endif (STANDALONE)
if (WINDOWS)
elseif (DARWIN)
elseif (LINUX)
endif (WINDOWS)
|