You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I use xmake in CLion, so I use the CMakeLists generator given by xmake to compile my project using CMake on CLion.
But I noticed that when I'm using precompiled headers in my xmake.lua with the line set_pcxxheader("Cardia/include/cdpch.hpp"), it doesn't translate it in cmake.
Expected behavior
Find in the CMakeLists.txt generated
target_precompile_headers(Cardia
PUBLIC
cdpch.hpp
)
Error output
No error, just an unexpected behavior
Related Environment
xmake version: xmake v2.5.9+dev.66c32d141
os: Windows
target platform: Windows
The text was updated successfully, but these errors were encountered:
Describe the bug
I use xmake in CLion, so I use the CMakeLists generator given by xmake to compile my project using CMake on CLion.
But I noticed that when I'm using precompiled headers in my xmake.lua with the line
set_pcxxheader("Cardia/include/cdpch.hpp"), it doesn't translate it in cmake.Expected behavior
Find in the CMakeLists.txt generated
target_precompile_headers(Cardia PUBLIC cdpch.hpp )Error output
No error, just an unexpected behavior
Related Environment
The text was updated successfully, but these errors were encountered: