mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-22 17:24:48 -05:00
03b9e555c0
This library isn't used by anything but the Android build which currently doesn't work. We most likely won't be using a homegrown implementation for archive formats in the future, regardless.
13 lines
451 B
CMake
13 lines
451 B
CMake
add_library(ladybird SHARED
|
|
${LADYBIRD_SOURCES}
|
|
src/main/cpp/LadybirdActivity.cpp
|
|
src/main/cpp/WebViewImplementationNative.cpp
|
|
src/main/cpp/WebViewImplementationNativeJNI.cpp
|
|
src/main/cpp/ALooperEventLoopImplementation.cpp
|
|
src/main/cpp/TimerExecutorService.cpp
|
|
src/main/cpp/JNIHelpers.cpp
|
|
)
|
|
target_link_libraries(ladybird PRIVATE jnigraphics android)
|
|
|
|
include(../cmake/AndroidExtras.cmake)
|
|
create_ladybird_bundle(ladybird)
|