Hello everyone!
I made a minimum CMake project for testing purpose:
cmake_minimum_required(VERSION 3.31)
project(Test-project)
add_executable(Test-project main.cpp)
After generating an Xcode project I was able to build it normally, but I have to rebuild project every time to see compilation error.
For example, with native projects Xcode may show errors on the fly, even when working with C++.
Is it possible to enable the Live issues option in the case of using CMake?