Warning, /libraries/phonon/demos/simplecapture/CMakeLists.txt is written in an unsupported language. File is not indexed.
0001 cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
0002 project(simplecapture)
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(simplecapture_SRCS
0009 main.cpp
0010 capture.cpp
0011 )
0012
0013 add_executable(simplecapture ${simplecapture_SRCS})
0014 target_link_libraries(simplecapture Phonon::phonon4qt5 Qt5::Core Qt5::Widgets)