1cc1269f51
Fixed #9
109 lines
3.6 KiB
CMake
109 lines
3.6 KiB
CMake
cmake_minimum_required(VERSION 3.10)
|
|
|
|
set(EPHEMERAL_DIR "${CMAKE_CURRENT_SOURCE_DIR}/ephemeral")
|
|
|
|
# Configuration provided via flutter tool.
|
|
include(${EPHEMERAL_DIR}/generated_config.cmake)
|
|
|
|
set(WRAPPER_ROOT "${EPHEMERAL_DIR}/cpp_client_wrapper")
|
|
|
|
# Serves the same purpose as list(TRANSFORM ... PREPEND ...),
|
|
# which isn't available in 3.10.
|
|
function(list_prepend LIST_NAME PREFIX)
|
|
set(NEW_LIST "")
|
|
foreach(element ${${LIST_NAME}})
|
|
list(APPEND NEW_LIST "${PREFIX}${element}")
|
|
endforeach(element)
|
|
set(${LIST_NAME} "${NEW_LIST}" PARENT_SCOPE)
|
|
endfunction()
|
|
|
|
# === Flutter Library ===
|
|
# System-level dependencies.
|
|
set(FLUTTER_LIBRARY "${EPHEMERAL_DIR}/libflutter_engine.so")
|
|
if(FLUTTER_TARGET_BACKEND_TYPE MATCHES "gbm")
|
|
set(FLUTTER_EMBEDDER_LIBRARY "${EPHEMERAL_DIR}/libflutter_elinux_gbm.so")
|
|
elseif(FLUTTER_TARGET_BACKEND_TYPE MATCHES "eglstream")
|
|
set(FLUTTER_EMBEDDER_LIBRARY "${EPHEMERAL_DIR}/libflutter_elinux_eglstream.so")
|
|
elseif(FLUTTER_TARGET_BACKEND_TYPE MATCHES "x11")
|
|
set(FLUTTER_EMBEDDER_LIBRARY "${EPHEMERAL_DIR}/libflutter_elinux_x11.so")
|
|
else()
|
|
set(FLUTTER_EMBEDDER_LIBRARY "${EPHEMERAL_DIR}/libflutter_elinux_wayland.so")
|
|
endif()
|
|
|
|
# Published to parent scope for install step.
|
|
set(FLUTTER_LIBRARY ${FLUTTER_LIBRARY} PARENT_SCOPE)
|
|
set(FLUTTER_EMBEDDER_LIBRARY ${FLUTTER_EMBEDDER_LIBRARY} PARENT_SCOPE)
|
|
set(FLUTTER_ICU_DATA_FILE "${EPHEMERAL_DIR}/icudtl.dat" PARENT_SCOPE)
|
|
set(PROJECT_BUILD_DIR "${PROJECT_DIR}/build/elinux/" PARENT_SCOPE)
|
|
set(AOT_LIBRARY "${EPHEMERAL_DIR}/libapp.so" PARENT_SCOPE)
|
|
|
|
list(APPEND FLUTTER_LIBRARY_HEADERS
|
|
"flutter_export.h"
|
|
"flutter_plugin_registrar.h"
|
|
"flutter_messenger.h"
|
|
"flutter_texture_registrar.h"
|
|
"flutter_elinux.h"
|
|
"flutter_platform_views.h"
|
|
)
|
|
list_prepend(FLUTTER_LIBRARY_HEADERS "${EPHEMERAL_DIR}/")
|
|
add_library(flutter INTERFACE)
|
|
target_include_directories(flutter INTERFACE
|
|
"${EPHEMERAL_DIR}"
|
|
)
|
|
target_link_libraries(flutter INTERFACE "${FLUTTER_LIBRARY}")
|
|
target_link_libraries(flutter INTERFACE "${FLUTTER_EMBEDDER_LIBRARY}")
|
|
add_dependencies(flutter flutter_assemble)
|
|
|
|
# === Wrapper ===
|
|
list(APPEND CPP_WRAPPER_SOURCES_CORE
|
|
"core_implementations.cc"
|
|
"standard_codec.cc"
|
|
)
|
|
list(TRANSFORM CPP_WRAPPER_SOURCES_CORE PREPEND "${WRAPPER_ROOT}/")
|
|
list(APPEND CPP_WRAPPER_SOURCES_PLUGIN
|
|
"plugin_registrar.cc"
|
|
)
|
|
list(TRANSFORM CPP_WRAPPER_SOURCES_PLUGIN PREPEND "${WRAPPER_ROOT}/")
|
|
list(APPEND CPP_WRAPPER_SOURCES_APP
|
|
"flutter_engine.cc"
|
|
"flutter_view_controller.cc"
|
|
)
|
|
list(TRANSFORM CPP_WRAPPER_SOURCES_APP PREPEND "${WRAPPER_ROOT}/")
|
|
|
|
# Wrapper sources needed for a plugin.
|
|
add_library(flutter_wrapper_plugin STATIC
|
|
${CPP_WRAPPER_SOURCES_CORE}
|
|
${CPP_WRAPPER_SOURCES_PLUGIN}
|
|
)
|
|
apply_standard_settings(flutter_wrapper_plugin)
|
|
set_target_properties(flutter_wrapper_plugin PROPERTIES
|
|
POSITION_INDEPENDENT_CODE ON)
|
|
set_target_properties(flutter_wrapper_plugin PROPERTIES
|
|
CXX_VISIBILITY_PRESET hidden)
|
|
target_link_libraries(flutter_wrapper_plugin PUBLIC flutter)
|
|
target_include_directories(flutter_wrapper_plugin PUBLIC
|
|
"${WRAPPER_ROOT}/include"
|
|
)
|
|
add_dependencies(flutter_wrapper_plugin flutter_assemble)
|
|
|
|
# Wrapper sources needed for the runner.
|
|
add_library(flutter_wrapper_app STATIC
|
|
${CPP_WRAPPER_SOURCES_CORE}
|
|
${CPP_WRAPPER_SOURCES_APP}
|
|
)
|
|
apply_standard_settings(flutter_wrapper_app)
|
|
target_link_libraries(flutter_wrapper_app PUBLIC flutter)
|
|
target_include_directories(flutter_wrapper_app PUBLIC
|
|
"${WRAPPER_ROOT}/include"
|
|
)
|
|
add_dependencies(flutter_wrapper_app flutter_assemble)
|
|
|
|
add_custom_target(flutter_assemble DEPENDS
|
|
"${FLUTTER_LIBRARY}"
|
|
"${FLUTTER_EMBEDDER_LIBRARY}"
|
|
${FLUTTER_LIBRARY_HEADERS}
|
|
${CPP_WRAPPER_SOURCES_CORE}
|
|
${CPP_WRAPPER_SOURCES_PLUGIN}
|
|
${CPP_WRAPPER_SOURCES_APP}
|
|
)
|