Files
lvgl/tests/perf/CMakeLists.txt
Daniel Rossier d9496c7979 First CI action for performance check of LVGL code base with SO3 (#4122)
Co-authored-by: Anthony I. Jaccard <anthony.jaccard@heig-vd.ch>
Co-authored-by: AnthoJack <to.jaccard@hotmail.ch>
2024-06-17 22:56:51 +02:00

13 lines
347 B
CMake

include_directories(.)
add_executable(prof_test.elf prof_test.c)
target_compile_options(prof_test.elf PUBLIC -g)
add_library(prof_test_p.a STATIC prof_test_p.c)
target_compile_options(prof_test_p.a PRIVATE -pg)
target_link_libraries(prof_test.elf c)
target_link_libraries(prof_test.elf prof_test_p.a)
target_link_libraries(prof_test.elf lvgl)