add_executable(BellHybrid) add_custom_target(Bell ALL DEPENDS BellHybrid BellHybrid.img ) target_link_directories(BellHybrid PRIVATE ${PROJECT_LIB_DIRECTORY}) target_compile_definitions(BellHybrid PRIVATE ${PROJECT_CONFIG_DEFINITIONS} ${PROJECT_TARGET} ) target_compile_options(BellHybrid PRIVATE $<$:-Wno-discarded-qualifiers> "-Wno-error=deprecated-declarations" ) target_sources(BellHybrid PRIVATE ${TARGET_SOURCES} BellHybridMain.cpp PlatformFactory.cpp EinkSentinelBell.cpp init_prof.cpp ) target_include_directories(BellHybrid PRIVATE ${TARGET_DIR_INCLUDES} ${PROJECT_INCLUDES} ${CMAKE_BINARY_DIR} ) set_target_properties(BellHybrid PROPERTIES SUFFIX ".elf" LINK_FLAGS "-Xlinker -Map=${CMAKE_BINARY_DIR}/BellHybrid.map " ) target_link_libraries(BellHybrid PRIVATE appmgr bell::app-alarm bell::app-onboarding bell::app-relaxation bell::app-bedtime bell::app-common bell::app-main bell::app-meditation-timer bell::app-focus-timer bell::app-powernap bell::app-settings bell::app-whats-new bell::db bell::audio bell::evtmgr bell::paths log logdump messagetype module-bsp module-vfs service-desktop service-time service-fileindexer sys bell::time platform version-header pure-core "$<$:iosyscalls>" "$<$:CrashCatcher::CrashCatcher>" ) if (${PROJECT_TARGET} STREQUAL "TARGET_Linux") add_dependencies(BellHybrid service_renderer) endif() set_source_files_properties(BellHybridMain.cpp PROPERTIES COMPILE_DEFINITIONS "${ENABLED_APPS_DEFINES}") strip_executable(BellHybrid) include(BinaryAssetsVersions.cmake) include(AddVersionJson) add_directories( TARGET create_user_directories PREFIX ${SYSROOT_PATH}/user/media/app DEPENDS system_directories_common DIRECTORIES relaxation alarm ) if (${PROJECT_TARGET} STREQUAL "TARGET_RT1051") include(AddBootBin) add_boot_bin(BellHybrid) add_image( PRODUCT BellHybrid SYSROOT sysroot DEPENDS install_scripts create_user_directories assets recovery.bin-target ecoboot.bin-target BellHybrid-boot.bin BellHybrid-version.json-target ) add_version_rt1051_json(BellHybrid) else() add_image( PRODUCT BellHybrid SYSROOT sysroot LUTS "" DEPENDS install_scripts remove_var_directory create_user_directories assets BellHybrid-version.json-target ) add_version_linux_json(BellHybrid) endif() include(AddHexTarget) add_hex_target(BellHybrid) include(DownloadAsset) # copy all assets required to build catalog under current folder as in json recipe download_asset_release_json(json-proprietary-target ${CMAKE_CURRENT_SOURCE_DIR}/assets/assets_proprietary.json ${SYSROOT_PATH}/system_a/ MuditaOSAssets 0.0.1 ${MUDITA_CACHE_DIR} ) download_asset_release_json(json-common-target ${CMAKE_CURRENT_SOURCE_DIR}/assets/assets_common.json ${SYSROOT_PATH}/system_a/ MuditaOSPublicAssets 0.0.27 ${MUDITA_CACHE_DIR} ) download_asset_release_json(json-community-target ${CMAKE_CURRENT_SOURCE_DIR}/assets/assets_community.json ${SYSROOT_PATH}/system_a/ MuditaOSPublicAssets 0.0.27 ${MUDITA_CACHE_DIR} ) download_asset_json(json-rt1051-target ${CMAKE_CURRENT_SOURCE_DIR}/assets/assets_rt1051.json ${SYSROOT_PATH}/system_a/assets MuditaOSAssets ${MUDITA_CACHE_DIR} ) download_asset_release(PureRecovery.bin recovery.bin PureRecovery ${RECOVERY_BIN_VERSION} ${MUDITA_CACHE_DIR}) download_asset_release(ecoboot.bin ecoboot.bin ecoboot ${ECOBOOT_BIN_VERSION} ${MUDITA_CACHE_DIR}) if (ENABLE_VERSION_PRO) add_standalone_image(BellHybrid BellHybridPro) add_update_package(BellHybrid BellHybridPro) else () add_standalone_image(BellHybrid BellHybrid) add_update_package(BellHybrid BellHybrid) endif () add_subdirectory(alarms) add_subdirectory(apps) add_subdirectory(keymap) add_subdirectory(services) add_subdirectory(sys) add_subdirectory(serial-number-parser) add_subdirectory(paths) option(CONFIG_ENABLE_TEMP "Enable displaying temperature" OFF) option(CONFIG_SHOW_MEMORY_INFO "Enable displaying memory info" OFF) configure_file(config/ProductConfig.in.hpp ${CMAKE_BINARY_DIR}/ProductConfig.hpp @ONLY) target_compile_definitions(tagsfetcher PRIVATE TAGSFETCHER_MAX_TAG_SIZE=204800)