From a78f967b93a195d67b6c5b9f104d42bdd4861a8c Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Thu, 16 Sep 2021 01:54:53 -0600 Subject: [PATCH] Documentation: Recommend setting PREFIX_PATH instead of INSTALL_PREFIX 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. --- Documentation/CLionConfiguration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/CLionConfiguration.md b/Documentation/CLionConfiguration.md index 8bbb2287217..2fb953b93b3 100644 --- a/Documentation/CLionConfiguration.md +++ b/Documentation/CLionConfiguration.md @@ -14,7 +14,7 @@ After opening the `serenity` repository in CLion as a new project, the "`Open Pr ``` -GNinja -DCMAKE_TOOLCHAIN_FILE=$CMakeProjectDir$/Build/i686/CMakeToolchain.txt --DCMAKE_INSTALL_PREFIX=$CMakeProjectDir$/Build/lagom-install +-DCMAKE_PREFIX_PATH=$CMakeProjectDir$/Build/lagom-install -DSERENITY_ARCH=i686 ```