mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 05:20:30 +00:00
Demos: Compile LibGfxDemo with the new CMake build system
This commit is contained in:
parent
c52f4923ed
commit
56c4538085
Notes:
sideshowbarker
2024-07-19 06:35:35 +09:00
Author: https://github.com/tgsm 🔰 Commit: https://github.com/SerenityOS/serenity/commit/56c45380855 Pull-request: https://github.com/SerenityOS/serenity/pull/2258
3 changed files with 7 additions and 8 deletions
|
@ -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)
|
||||
|
|
6
Demos/LibGfxDemo/CMakeLists.txt
Normal file
6
Demos/LibGfxDemo/CMakeLists.txt
Normal file
|
@ -0,0 +1,6 @@
|
|||
set(SOURCES
|
||||
main.cpp
|
||||
)
|
||||
|
||||
serenity_bin(LibGfxDemo)
|
||||
target_link_libraries(LibGfxDemo LibGUI LibIPC LibGfx LibCore)
|
|
@ -1,8 +0,0 @@
|
|||
OBJS = \
|
||||
main.o
|
||||
|
||||
PROGRAM = LibGfxDemo
|
||||
|
||||
LIB_DEPS = GUI IPC Gfx Core
|
||||
|
||||
include ../../Makefile.common
|
Loading…
Reference in a new issue