CMakeLists.txt 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. # Copyright (C) 2018 LongSung Technologies Limited and/or its affiliates("LongSung").
  2. # All rights reserved.
  3. #
  4. # This software is supplied "AS IS" without any warranties.
  5. # LongSung assumes no responsibility or liability for the use of the software,
  6. # conveys no license or title under any patent, copyright, or mask work
  7. # right to the product. LongSung reserves the right to make changes in the
  8. # software without notification. LongSung also make no representation or
  9. # warranty that such application will be suitable for the specified use
  10. # without further testing or modification.
  11. option(ENABLE_DEBUG "enable_debug_fun" ON)
  12. if(ENABLE_DEBUG)
  13. add_definitions(-D ENABLE_DEBUG)
  14. set(debug_files ./app/debug.c)
  15. endif(ENABLE_DEBUG)
  16. #set(preset_dir ./preset)
  17. set(app_dir ./app)
  18. set(app_file ./hpocapp.c
  19. ${app_dir}/board.c
  20. ${app_dir}/app.c
  21. ${app_dir}/setting.c
  22. ${app_dir}/poc.c
  23. ${app_dir}/uio.c
  24. ${app_dir}/uiEntry.c
  25. ${app_dir}/uiBlock.c
  26. ${app_dir}/gpsCtl.c
  27. ${app_dir}/GpsData.c
  28. ${app_dir}/message.c
  29. ${app_dir}/hook.c
  30. ${app_dir}/appAuth.c
  31. ${app_dir}/common.c
  32. ${app_dir}/bsp.c
  33. ${app_dir}/ble.c
  34. ${debug_files})
  35. set(log_dir ${app_dir}/log)
  36. set(log_file ${log_dir}/log.c)
  37. set(lcd_dir ${app_dir}/GUI)
  38. set(lcd_file ${lcd_dir}/fonts.c
  39. ${lcd_dir}/gui.c
  40. ${lcd_dir}/lcdDrv.c)
  41. set(fonts_dir ${app_dir}/fonts)
  42. set(fonts_file ${fonts_dir}/GB2312UnicodeTable.c
  43. ${fonts_dir}/strnormalize.c
  44. ${fonts_dir}/unicode.c
  45. ${fonts_dir}/language.c)
  46. set(interface_dir ${app_dir}/Interface)
  47. set(interface_file ${interface_dir}/Palace.c
  48. ${interface_dir}/uiMenu.c
  49. ${interface_dir}/ListBox.c
  50. ${interface_dir}/ListBoxSMS.c
  51. ${interface_dir}/NumEdit.c
  52. ${interface_dir}/ManageMessage.c
  53. ${interface_dir}/newMessage.c)
  54. set(md5_dir ${app_dir}/md5)
  55. set(md5_file ${md5_dir}/mymd5.c)
  56. set(all_dir ${app_dir}
  57. ${log_dir}
  58. ${lcd_dir}
  59. ${fonts_dir}
  60. ${interface_dir}
  61. ${md5_dir})
  62. set(all_file ${app_file}
  63. ${log_file}
  64. ${lcd_file}
  65. ${interface_file}
  66. ${md5_file}
  67. ${fonts_file})
  68. set(cy_lib ${CMAKE_CURRENT_SOURCE_DIR}/lib/libpoc.a)
  69. set(language_lib ${CMAKE_CURRENT_SOURCE_DIR}/lib/libfontlib.a)
  70. ##################################################################################
  71. #aux_source_directory(${SOURCE_TOP_DIR}/hpoc/app SRC_LIST)
  72. include_directories(${all_dir})
  73. #add_definitions(-Wall)
  74. add_definitions(-w)
  75. #set(preset_dir ${CMAKE_CURRENT_SOURCE_DIR}/preset)
  76. if(CONFIG_APPIMG_LOAD_FLASH)
  77. set(target LC_D29V)
  78. add_appimg(${target} ${flash_ldscript} ${all_file})
  79. #app usr hgs_lib has to be link first
  80. target_link_libraries(${target} PRIVATE ${cy_lib})
  81. target_link_libraries(${target} PRIVATE ${language_lib})
  82. target_link_libraries(${target} PRIVATE ${libc_file_name} ${libm_file_name} ${libgcc_file_name})
  83. set(pac_file ${out_hex_dir}/${target}.pac)
  84. set(target_img_file ${out_hex_dir}/${target}.img)
  85. set(prepack_cpio ${out_hex_dir}/${target}_prepack.cpio)
  86. pac_init_fdl(init_fdl)
  87. if(preset_dir)
  88. file(REMOVE ${preset_dir}/.gitkeep)
  89. file(GLOB_RECURSE preset_files ${preset_dir}/*)
  90. foreach(preset ${preset_files})
  91. string(REGEX REPLACE ${preset_dir}/ "" preset_file ${preset})
  92. message("find preset file ${preset_file} in dir ${preset_dir}")
  93. set(pkt_preset_flies
  94. ${pkt_preset_flies}
  95. cfg-pack-file -i ${preset_file} -p ${preset_dir}/${preset_file} -n /${preset_file}
  96. )
  97. message("cmd ${pkt_preset_flies}")
  98. endforeach(preset)
  99. endif(preset_dir)
  100. add_custom_command(OUTPUT ${prepack_cpio}
  101. COMMAND python3 ${modemgen_py} prepackgen
  102. --source-top ${SOURCE_TOP_DIR}
  103. --binary-top ${BINARY_TOP_DIR}
  104. --prepackfile ${CONFIG_PACKAGE_FILE_APPIMG_JSON_PATH}
  105. ${prepack_cpio}
  106. DEPENDS ${modemgen_py}
  107. WORKING_DIRECTORY ${SOURCE_TOP_DIR}
  108. )
  109. if(CONFIG_PACKAGE_FILE_APPIMG_JSON_PATH)
  110. set(cfg_pack_gpio cfg-pack-cpio -i PREPACK -p ${prepack_cpio})
  111. set(prepack_file ${prepack_cpio})
  112. endif()
  113. add_custom_command(OUTPUT ${pac_file}
  114. COMMAND python3 ${pacgen_py} ${init_fdl}
  115. cfg-image -i APPIMG -a ${CONFIG_APPIMG_FLASH_ADDRESS}
  116. -s ${CONFIG_APPIMG_FLASH_SIZE}
  117. -p ${target_img_file}
  118. ${cfg_pack_gpio}
  119. pac-gen ${pac_file}
  120. DEPENDS ${pacgen_py} ${target_img_file} ${prepack_file}
  121. WORKING_DIRECTORY ${SOURCE_TOP_DIR}
  122. )
  123. add_custom_target(${target}_pacgen ALL DEPENDS ${pac_file})
  124. endif()