<table border="1" cellspacing="0" cellpadding="8">
    <tr>
        <th>Issue</th>
        <td>
            <a href=https://github.com/llvm/llvm-project/issues/79693>79693</a>
        </td>
    </tr>

    <tr>
        <th>Summary</th>
        <td>
            Why windows target have not cmake-config files?
        </td>
    </tr>

    <tr>
      <th>Labels</th>
      <td>
            new issue
      </td>
    </tr>

    <tr>
      <th>Assignees</th>
      <td>
      </td>
    </tr>

    <tr>
      <th>Reporter</th>
      <td>
          Gashmob
      </td>
    </tr>
</table>

<pre>
    Hi
I'm working on a project that uses LLVM as dependency. My project has a CMake based build system and uses Github for the CI. It works fine for Linux and MacOS, but when I've tried to configure it for Windows, it fails. 

I've look on some forums and it appears that Windows target do not contains `LLVMConfig.cmake` nor `llvm-config.cmake`.

So my question is, why Linux and MacOS target have these files but not Windows ?

For a little of context here it is how my CMakeLists.txt looks for LLVM:
```cmake
find_package(LLVM REQUIRED CONFIG 15)

message(STATUS "Found LLVM ${LLVM_PACKAGE_VERSION}")
message(STATUS "Using LLVMConfig.cmake in: ${LLVM_DIR}")

include_directories(${LLVM_INCLUDE_DIRS})
separate_arguments(LLVM_DEFINITIONS_LIST NATIVE_COMMAND ${LLVM_DEFINITIONS})
add_definitions(${LLVM_DEFINITIONS})

llvm_map_components_to_libnames(llvm_libs support core irreader)
```
</pre>
<img width="1px" height="1px" alt="" src="http://email.email.llvm.org/o/eJx0VF1z6jgM_TXmRXMZ4_CVhzxwgXQzC3S3tL2PGSdWiLeJnbWdUv79jh3a0s7eGcZkLOnoSDoyt1aeFGJCZj_JbDPivau1Se64rVtdjAotLskfktANoauMsEULZ21epDqBVsChM_ofLB24mjvoLVrY7Z73wC0I7FAJVOVlDPvLh2PNLXBY7_kLQsEtCih62QiwF-uwBa7EAHMnXd0XUGkDrkZYZ2PIXMhtoZIKg2UnVf8WYva8vD8Stoaid3CuUYEn-4rgjEQBTkOpVSVPvUGQLgT_kkros_VB_obLxo5hKPSz3FeERusXX6zVbcjatzaklA541yE3dqj-igeOmxM6EBqUdj6t41JZIHPqW7MONMZly1-QzCkobbypaV7bH-VX2_iWzFFDe4F_e7ROagUy8D7Xl-89eE9fc198jRahkg3a0BhP6J0midJb_FQb4NBI5xoEXQXe-OagxqFj0kKtz55DmN1OWmfH7s2F9thhGrvnPYmueGROh99QTbirpBJ5x8sXfkLClkEpD9u_n7KH7QbW94c0u4PJjLD4lliL1g7-x8fV49MRCGOp7pUYlEbYlCx--s_8r9X6z9XdNn_ePhyz-wNZbAhjH2j_h_NkvZC_jwWkItHqFnmTPXxDG06pyqYXmAtpsHTaSLSELW8Cs8N697TZeoBjQLiGW-y44Q5zbk59i8rZaz_yzTbNDtljdn845rvs-AiH1WP2vM3X9_v96rD5wurT9RabC5ELrKSSXinfCP0mZji9CPOWd3mp204rTyt3Om9koXgbSgsejSws2L7rtPH69vowBrlA84n3Pv2RSCIRRzEfYTJZ0Hk0j6LJclQnAmm5pLSaVNOYiuW8iGgxx0lZUjGNixkdyYRRNqUTtphE02W0HBezmHEWVxGdLSitYjKl2HLZjD2psTankbS2x2QRz-No1PACGxteNcYUniEY_Qhnm5FJwr4V_cmSKW2Clj9QnHQNJr_qC5y_bnRYqbDTXiXXbR22i0TpqDdNUjvXWb8DLCUsPYU3bFzqlrDU41__flwfQ8LSwMoSlgbW_wUAAP___FrCKw">