Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions litehtml-maui-native/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,6 @@ endif()


# Add source to this project's executable.


add_library (litehtml-maui ${LIB_TYPE} "src/litehtml-maui.cpp" "src/litehtml-maui.h" "src/litehtml-maui-container.h" "src/litehtml-maui-container.cpp")

set_target_properties(litehtml-maui PROPERTIES
Expand All @@ -40,6 +38,9 @@ set_target_properties(litehtml-maui PROPERTIES
PUBLIC_HEADER "src/litehtml-maui.h"
)

# Android 16kb page size
target_link_options(litehtml-maui PRIVATE "-Wl,-z,max-page-size=16384")

target_link_libraries(litehtml-maui litehtml)


Expand Down