Documentation: Change CMake build directory to Build/i686 in CLion config

This commit is contained in:
Marcin Gasperowicz 2021-04-17 12:18:33 +02:00 committed by Linus Groh
parent 7edfe02dff
commit 139c04a6e5
Notes: sideshowbarker 2024-07-18 19:30:58 +09:00

View file

@ -3,11 +3,11 @@
CLion can integrate with CMake to provide code comprehension features.
After opening the `serenity` repository in CLion as a new project, go to "`File->Settings->Build, Execution, Deployment->Cmake`",
and set the following fields: (Assuming you use `Ninja` as the build system and configured the CMake build directory to `Build`)
and set the following fields: (Assuming you use `Ninja` as the build system and configured the CMake build directory to `Build/i686`)
`CMake Options`: `-G Ninja -DBUILD_LAGOM=ON -DCMAKE_C_COMPILER=gcc-10 -DCMAKE_CXX_COMPILER=g++-10`
`Build Directory`: `Build`
`Build Directory`: `Build/i686`
## Notes for WSL Users