CMakeLists.txt 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  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. set(preset_dir ./preset)
  12. set(app_dir ./app)
  13. set(app_file ./hpocapp.c
  14. ${app_dir}/board.c
  15. ${app_dir}/app.c
  16. ${app_dir}/setting.c
  17. ${app_dir}/poc.c
  18. ${app_dir}/uio.c
  19. ${app_dir}/uiEntry.c
  20. ${app_dir}/uiBlock.c
  21. ${app_dir}/gpsCtl.c
  22. ${app_dir}/message.c
  23. ${app_dir}/hook.c
  24. ${app_dir}/appAuth.c
  25. ${app_dir}/common.c)
  26. set(log_dir ${app_dir}/log)
  27. set(log_file ${log_dir}/log.c)
  28. set(lcd_dir ${app_dir}/GUI)
  29. set(lcd_file ${lcd_dir}/fonts.c
  30. ${lcd_dir}/gui.c
  31. ${lcd_dir}/lcdDrv.c)
  32. set(interface_dir ${app_dir}/Interface)
  33. set(interface_file ${interface_dir}/Palace.c
  34. ${interface_dir}/uiMenu.c
  35. ${interface_dir}/ListBox.c
  36. ${interface_dir}/ListBoxSMS.c
  37. ${interface_dir}/NumEdit.c
  38. ${interface_dir}/ManageMessage.c
  39. ${interface_dir}/dotListBox.c
  40. )
  41. set(md5_dir ${app_dir}/md5)
  42. set(md5_file ${md5_dir}/mymd5.c)
  43. set(GWSDinc_dir ${app_dir}/GWSDinc)
  44. set(GWSDinc_file ${GWSDinc_dir}/bsp.c)
  45. set(all_dir ${app_dir}
  46. ${log_dir}
  47. ${lcd_dir}
  48. ${interface_dir}
  49. ${md5_dir}
  50. ${GWSDinc_dir})
  51. set(all_file ${app_file}
  52. ${log_file}
  53. ${lcd_file}
  54. ${interface_file}
  55. ${md5_file}
  56. ${GWSDinc_file})
  57. option(USE_HPOC_POC "enable USE_HPOC_POC" OFF)
  58. option(USE_GWSD_POC "enable USE_GWSD_POC" ON)
  59. if(USE_GWSD_POC)
  60. add_definitions(-D ENABLE_GWSD_POC)
  61. set(gwsd_dir ./lib/gwsd)
  62. set(gwsd_lib ${CMAKE_CURRENT_SOURCE_DIR}/lib/gwsd/POC_OPEN.lib m)
  63. set(language_lib ${CMAKE_CURRENT_SOURCE_DIR}/lib/libfontlib.a)
  64. #set(qr_lib ${CMAKE_CURRENT_SOURCE_DIR}/lib/libqrcode.a)
  65. endif(USE_GWSD_POC)
  66. ##################################################################################
  67. #aux_source_directory(${SOURCE_TOP_DIR}/hpoc/app SRC_LIST)
  68. include_directories(${all_dir})
  69. #add_definitions(-Wall)
  70. add_definitions(-w)
  71. set(preset_dir ${CMAKE_CURRENT_SOURCE_DIR}/preset)
  72. if(CONFIG_APPIMG_LOAD_FLASH)
  73. set(target X2)
  74. add_appimg(${target} ${flash_ldscript} ${all_file})
  75. #app usr hgs_lib has to be link first
  76. target_link_libraries(${target} PRIVATE ${gwsd_lib})
  77. target_link_libraries(${target} PRIVATE ${language_lib})
  78. target_link_libraries(${target} PRIVATE ${libc_file_name} ${libm_file_name} ${libgcc_file_name})
  79. set(pac_file ${out_hex_dir}/${target}.pac)
  80. set(target_img_file ${out_hex_dir}/${target}.img)
  81. pac_init_fdl(init_fdl)
  82. if(preset_dir)
  83. file(REMOVE ${preset_dir}/.gitkeep)
  84. file(GLOB_RECURSE preset_files ${preset_dir}/*)
  85. foreach(preset ${preset_files})
  86. string(REGEX REPLACE ${preset_dir}/ "" preset_file ${preset})
  87. message("find preset file ${preset_file} in dir ${preset_dir}")
  88. set(pkt_preset_flies
  89. ${pkt_preset_flies}
  90. cfg-pack-file -i ${preset_file} -p ${preset_dir}/${preset_file} -n /${preset_file}
  91. )
  92. message("cmd ${pkt_preset_flies}")
  93. endforeach(preset)
  94. endif(preset_dir)
  95. add_custom_command(OUTPUT ${pac_file}
  96. COMMAND python3 ${pacgen_py} ${init_fdl}
  97. cfg-image -i APPIMG -a ${CONFIG_APPIMG_FLASH_ADDRESS}
  98. -s ${CONFIG_APPIMG_FLASH_SIZE}
  99. -p ${target_img_file}
  100. ${pkt_preset_flies}
  101. pac-gen ${pac_file}
  102. DEPENDS ${pacgen_py} ${target_img_file}
  103. WORKING_DIRECTORY ${SOURCE_TOP_DIR}
  104. )
  105. add_custom_target(${target}_pacgen ALL DEPENDS ${pac_file})
  106. endif()