Demos: Compile LibGfxDemo with the new CMake build system

This commit is contained in:
tgsm 2020-05-16 16:51:42 -04:00 committed by Andreas Kling
parent c52f4923ed
commit 56c4538085
3 changed files with 7 additions and 8 deletions

View file

@ -2,6 +2,7 @@ add_subdirectory(Cube)
add_subdirectory(DynamicLink)
add_subdirectory(Fire)
add_subdirectory(HelloWorld)
add_subdirectory(LibGfxDemo)
add_subdirectory(Mouse)
add_subdirectory(Screensaver)
add_subdirectory(WidgetGallery)

View file

@ -0,0 +1,6 @@
set(SOURCES
main.cpp
)
serenity_bin(LibGfxDemo)
target_link_libraries(LibGfxDemo LibGUI LibIPC LibGfx LibCore)

View file

@ -1,8 +0,0 @@
OBJS = \
main.o
PROGRAM = LibGfxDemo
LIB_DEPS = GUI IPC Gfx Core
include ../../Makefile.common