CMakeLists.txt 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. ${app_dir}/xinbiao.c
  35. ${debug_files})
  36. set(log_dir ${app_dir}/log)
  37. set(log_file ${log_dir}/log.c)
  38. set(lcd_dir ${app_dir}/GUI)
  39. set(lcd_file ${lcd_dir}/fonts.c
  40. ${lcd_dir}/gui.c
  41. ${lcd_dir}/lcdDrv.c)
  42. set(fonts_dir ${app_dir}/fonts)
  43. set(fonts_file ${fonts_dir}/GB2312UnicodeTable.c
  44. ${fonts_dir}/strnormalize.c
  45. ${fonts_dir}/unicode.c
  46. ${fonts_dir}/language.c)
  47. set(interface_dir ${app_dir}/Interface)
  48. set(interface_file ${interface_dir}/Palace.c
  49. ${interface_dir}/uiMenu.c
  50. ${interface_dir}/ListBox.c
  51. ${interface_dir}/ListBoxSMS.c
  52. ${interface_dir}/NumEdit.c
  53. ${interface_dir}/ManageMessage.c
  54. ${interface_dir}/checkbox.c
  55. ${interface_dir}/newMessage.c)
  56. set(md5_dir ${app_dir}/md5)
  57. set(md5_file ${md5_dir}/mymd5.c)
  58. set(all_dir ${app_dir}
  59. ${log_dir}
  60. ${lcd_dir}
  61. ${fonts_dir}
  62. ${interface_dir}
  63. ${md5_dir})
  64. set(all_file ${app_file}
  65. ${log_file}
  66. ${lcd_file}
  67. ${interface_file}
  68. ${md5_file}
  69. ${fonts_file})
  70. set(cy_lib ${CMAKE_CURRENT_SOURCE_DIR}/lib/libpoc.a)
  71. set(language_lib ${CMAKE_CURRENT_SOURCE_DIR}/lib/libfontlib.a)
  72. ##################################################################################
  73. #aux_source_directory(${SOURCE_TOP_DIR}/hpoc/app SRC_LIST)
  74. include_directories(${all_dir})
  75. #add_definitions(-Wall)
  76. add_definitions(-w)
  77. #set(preset_dir ${CMAKE_CURRENT_SOURCE_DIR}/preset)
  78. if(CONFIG_APPIMG_LOAD_FLASH)
  79. set(target LC_D29V)
  80. add_appimg(${target} ${flash_ldscript} ${all_file})
  81. #app usr hgs_lib has to be link first
  82. target_link_libraries(${target} PRIVATE ${cy_lib})
  83. target_link_libraries(${target} PRIVATE ${language_lib})
  84. target_link_libraries(${target} PRIVATE ${libc_file_name} ${libm_file_name} ${libgcc_file_name})
  85. set(pac_file ${out_hex_dir}/${target}.pac)
  86. set(target_img_file ${out_hex_dir}/${target}.img)
  87. set(prepack_cpio ${out_hex_dir}/${target}_prepack.cpio)
  88. pac_init_fdl(init_fdl)
  89. if(preset_dir)
  90. file(REMOVE ${preset_dir}/.gitkeep)
  91. file(GLOB_RECURSE preset_files ${preset_dir}/*)
  92. foreach(preset ${preset_files})
  93. string(REGEX REPLACE ${preset_dir}/ "" preset_file ${preset})
  94. message("find preset file ${preset_file} in dir ${preset_dir}")
  95. set(pkt_preset_flies
  96. ${pkt_preset_flies}
  97. cfg-pack-file -i ${preset_file} -p ${preset_dir}/${preset_file} -n /${preset_file}
  98. )
  99. message("cmd ${pkt_preset_flies}")
  100. endforeach(preset)
  101. endif(preset_dir)
  102. add_custom_command(OUTPUT ${prepack_cpio}
  103. COMMAND python3 ${modemgen_py} prepackgen
  104. --source-top ${SOURCE_TOP_DIR}
  105. --binary-top ${BINARY_TOP_DIR}
  106. --prepackfile ${CONFIG_PACKAGE_FILE_APPIMG_JSON_PATH}
  107. ${prepack_cpio}
  108. DEPENDS ${modemgen_py}
  109. WORKING_DIRECTORY ${SOURCE_TOP_DIR}
  110. )
  111. if(CONFIG_PACKAGE_FILE_APPIMG_JSON_PATH)
  112. set(cfg_pack_gpio cfg-pack-cpio -i PREPACK -p ${prepack_cpio})
  113. set(prepack_file ${prepack_cpio})
  114. endif()
  115. add_custom_command(OUTPUT ${pac_file}
  116. COMMAND python3 ${pacgen_py} ${init_fdl}
  117. cfg-image -i APPIMG -a ${CONFIG_APPIMG_FLASH_ADDRESS}
  118. -s ${CONFIG_APPIMG_FLASH_SIZE}
  119. -p ${target_img_file}
  120. ${cfg_pack_gpio}
  121. pac-gen ${pac_file}
  122. DEPENDS ${pacgen_py} ${target_img_file} ${prepack_file}
  123. WORKING_DIRECTORY ${SOURCE_TOP_DIR}
  124. )
  125. add_custom_target(${target}_pacgen ALL DEPENDS ${pac_file})
  126. endif()