# Xcode does not showing live issues for CMake generated project

**URL:** https://discourse.cmake.org/t/xcode-does-not-showing-live-issues-for-cmake-generated-project/13500
**Category:** Usage
**Tags:** gen:xcode
**Created:** [January 28, 2025, 8:32am UTC](https://discourse.cmake.org/t/xcode-does-not-showing-live-issues-for-cmake-generated-project/13500 "2025-01-28T08:32:08Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Denni1986](https://discourse.cmake.org/letter_avatar_proxy/v4/letter/d/c77e96/32.png) [@Denni1986](https://discourse.cmake.org/u/Denni1986)
#### Post date: [January 28, 2025, 8:32am UTC](https://discourse.cmake.org/t/xcode-does-not-showing-live-issues-for-cmake-generated-project/13500/1 "2025-01-28T08:32:08Z")

</div>

Hello everyone!

I made a minimum CMake project for testing purpose:

```auto
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?
