mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 19:15:06 +00:00
12 lines
209 B
CMake
12 lines
209 B
CMake
serenity_component(
|
|
VideoPlayer
|
|
TARGETS VideoPlayer
|
|
DEPENDS AudioServer
|
|
)
|
|
|
|
set(SOURCES
|
|
main.cpp
|
|
)
|
|
|
|
serenity_bin(VideoPlayer)
|
|
target_link_libraries(VideoPlayer LibVideo LibAudio LibGUI LibMain)
|