26 lines
495 B
CMake
26 lines
495 B
CMake
# -*- cmake -*-
|
|
add_subdirectory(base)
|
|
|
|
if (LINUX)
|
|
add_subdirectory(gstreamer010)
|
|
add_subdirectory(cef)
|
|
add_subdirectory(libvlc)
|
|
add_subdirectory(example)
|
|
endif (LINUX)
|
|
|
|
if (DARWIN)
|
|
add_subdirectory(cef)
|
|
add_subdirectory(libvlc)
|
|
add_subdirectory(example)
|
|
endif (DARWIN)
|
|
|
|
if (WINDOWS)
|
|
add_subdirectory(cef)
|
|
add_subdirectory(libvlc)
|
|
add_subdirectory(example)
|
|
endif (WINDOWS)
|
|
|
|
if (WINDOWS OR LINUX)
|
|
add_subdirectory(gstreamer10)
|
|
endif (WINDOWS OR LINUX)
|