12 lines
289 B
CMake
12 lines
289 B
CMake
|
cmake_minimum_required(VERSION 3.1 FATAL_ERROR)
|
||
|
project(MediaPlayer LANGUAGES CXX)
|
||
|
|
||
|
include(../build/BuildDefaults.cmake)
|
||
|
|
||
|
if(NOT GSTREAMER_MEDIA_PLAYER)
|
||
|
message("GStreamer based media player will not be built.")
|
||
|
else()
|
||
|
add_subdirectory("src")
|
||
|
add_subdirectory("test")
|
||
|
endif()
|