blob: 34ce7f0a1aaa816b9186bcf52420c5c260acf234 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
find_package(SDL3 REQUIRED CONFIG)
find_package(PkgConfig REQUIRED)
pkg_check_modules(SDL3_TTF REQUIRED IMPORTED_TARGET sdl3-ttf)
add_executable(ladybird
quartz.cpp
)
target_link_libraries(ladybird PRIVATE
AK
LibCore
LibFileSystem
LibGfx
LibImageDecoderClient
LibMain
LibURL
LibWebView
SDL3::SDL3
PkgConfig::SDL3_TTF
)
target_include_directories(ladybird PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
create_ladybird_bundle(ladybird)
|