Warning, /libraries/phonon/demos/simpleplayer/CMakeLists.txt is written in an unsupported language. File is not indexed.

0001 cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
0002 project(simpleplayer)
0003 
0004 set(CMAKE_AUTOMOC TRUE)
0005 
0006 find_package(Phonon4Qt5 NO_MODULE) # Not required so it builds within phonon as well
0007 
0008 set(simpleplayer_SRCS
0009     main.cpp
0010     player.cpp
0011 )
0012 
0013 add_executable(simpleplayer ${simpleplayer_SRCS})
0014 target_link_libraries(simpleplayer Phonon::phonon4qt5    Qt5::Core Qt5::Widgets)