summaryrefslogtreecommitdiff
path: root/Userland/Games/Pong/CMakeLists.txt
blob: 20638e587cc0e2b4fb4d6bd1c328ba5c6a4fcfd8 (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)