22 lines
445 B
CMake
22 lines
445 B
CMake
# -*- cmake -*-
|
|
|
|
add_subdirectory(base_basic)
|
|
add_subdirectory(base_media)
|
|
add_subdirectory(filepicker)
|
|
add_subdirectory(webkit)
|
|
|
|
if (LINUX)
|
|
add_subdirectory(gstreamer010)
|
|
endif (LINUX)
|
|
|
|
if (WINDOWS OR DARWIN)
|
|
add_subdirectory(quicktime)
|
|
endif (WINDOWS OR DARWIN)
|
|
|
|
if (WINDOWS AND WORD_SIZE EQUAL 32)
|
|
add_subdirectory(winmmshim)
|
|
endif (WINDOWS AND WORD_SIZE EQUAL 32)
|
|
|
|
add_subdirectory(example_basic)
|
|
add_subdirectory(example_media)
|