2023-08-02 04:58 AM
Hi,
I'm having an issue building TouchGFX project in new VSCode extenstion. When building cmake is throwing an error:
Solved! Go to Solution.
2023-08-02 07:23 AM
Somewhere in your CMakeList you need to link that library.
We currently use:
target_link_libraries(Remote PRIVATE "${TGFX_ROOT}/touchgfx/lib/core/cortex_m4f/gcc/libtouchgfx-float-abi-hard.a")
Be sure to set TGFX_ROOT to the installation folder first.
2023-08-02 07:23 AM
Somewhere in your CMakeList you need to link that library.
We currently use:
target_link_libraries(Remote PRIVATE "${TGFX_ROOT}/touchgfx/lib/core/cortex_m4f/gcc/libtouchgfx-float-abi-hard.a")
Be sure to set TGFX_ROOT to the installation folder first.