summaryrefslogtreecommitdiff
path: root/Userland/Games/Pong/CMakeLists.txt
blob: 1787e60133d99c45d7b484495ac539d286ae1079 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
serenity_component(
    Pong
    RECOMMENDED
    TARGETS Pong
)

set(SOURCES
    main.cpp
    Game.cpp
)

serenity_app(Pong ICON app-pong)
target_link_libraries(Pong LibGUI LibMain LibDesktop)