summaryrefslogtreecommitdiff
path: root/Documentation/CLionConfiguration.md
AgeCommit message (Collapse)Author
2023-01-08Documentation: Fix typo in CLionConfiguration.mdThomas Symalla
2022-12-03Documentation: Recommend CLion code style settings over manual stepsAndreas Oppebøen
Changing the naming conventions one-by-one was tedious and error-prone. A settings file is likely to be more forward compatible than a screenshot. The settings file was made by repeating the manual steps provided in the documentation, and exporting the file in CLion.
2022-10-12Documentation: Update CLion Configuration to use the x86-64 targetKenneth Myhra
Since the default target is x86-64 after PR #15441 was merged, then let us update the CLion Configuration accordingly.
2022-08-22Documentation: Change spelling error in CLionConfiguration.mdSkye Sprung
Change "want exclude" to "want to exclude"
2022-08-19Docs: Update CLion configuration for WSLRoberto Bampi
In CLion on Windows subsystem for linux (WSL) we need to set up a CLion toolchain so that the IDE can find the correct CMake.
2022-04-01Documentation: Add Kernel/Userland quick switch to CLion configurationIdan Horowitz
2021-09-19Meta: Add section to CLion Configuration Docs about including headersTobias Christiansen
2021-09-16Documentation: Recommend setting PREFIX_PATH instead of INSTALL_PREFIXAndrew Kaster
This was straight up the wrong CMake variable to set. We care about where the project will find Lagom, not where it wants to install its own binaries to.
2021-09-15Documentation: Update CLionConfiguration for SuperBuildAndrew Kaster
Extra configure options may need passed to CLion in order for it not to choke on the new CMake setup. In particular, it's now a very bad idea to pass CMAKE_CXX_COMPILER and CMAKE_C_COMPILER to the target build.
2021-08-03Documentation: Make docs for CLionConfiguration more understandableMartin Janiczek
2021-07-27Documentation: Add preferred coding style options to CLion configurationLinus Groh
2021-07-10Documentation: Reorganize the build documentationGunnar Beutner
2021-07-03Documentation: Add notes for first time setup of the project in CLionDiego Garza
Mention the "Open Project Wizard" where you can set the CMake options before making the cache. Remind users to use the "Default" build type and to build the Toolchain so CMake does not complain.
2021-05-17Everywhere: Fix a bunch of typosLinus Groh
2021-05-03Documentation: Add a note about excluding the Build directory in CLionBrian Gianforcaro
This was discussed a while back on discord, but no one got around to writing it down yet.
2021-04-17Documentation: Change CMake build directory to Build/i686 in CLion configMarcin Gasperowicz
2021-02-26Documentation: Update CLion configuration documentationItamar
Closes #5512
2020-05-17Meta: Update CLion and WSL configuration documentationsDevashish
This commit updates CLionConfiguration.md and NotesOnWSL.md so that they comply with new build system. In addition to that, the WSL doc is updated to include instructions to run qemu (and serenity) natively on Windows, without needing an X-window server.
2020-05-04Meta: Add configuration for setting up project in CLionDevashish
This commit adds a CMakeLists.txt file that will be used by CLion to configure the project and documentation explaining the steps to follow. Configuring CLion this way enables important features like code completion and file search. The configuration isn't perfect. There are source files for which CLion cannot pick up the headers and asks to manually include them from certain directories. But for the most part, it works all right.