mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
This file was here for quite a long while now. Let's finally move most of the dependency checks to one centralized place.
13 lines
331 B
CMake
13 lines
331 B
CMake
set(SOURCES
|
|
Database.cpp
|
|
)
|
|
|
|
ladybird_lib(LibDatabase database EXPLICIT_SYMBOL_EXPORT)
|
|
target_link_libraries(LibDatabase PRIVATE LibCore)
|
|
|
|
if (CMAKE_VERSION VERSION_GREATER_EQUAL 4.3.1)
|
|
target_link_libraries(LibDatabase PRIVATE SQLite3::SQLite3)
|
|
else()
|
|
target_link_libraries(LibDatabase PRIVATE SQLite::SQLite3)
|
|
endif()
|