diff --git a/scripts/ci/extends/template-build-linux.yml b/scripts/ci/extends/template-build-linux.yml index d8f7eb411048ecf1685e407d0183ed645cda25a6..56e8ee326a85942d439b3c8ab6679d37d9e037a0 100644 --- a/scripts/ci/extends/template-build-linux.yml +++ b/scripts/ci/extends/template-build-linux.yml @@ -15,7 +15,7 @@ - ([ "${CONAN_USER_HOME}" == "${CI_PROJECT_DIR}/.conan" ]) && conan remove --system-reqs '*' - ([[ $BUILD_CTEST_LARGE_ON_MASTER && "${CI_COMMIT_BRANCH}" == "master" && "${CMAKE_ARGS}" == *"USE_PYTHON=ON"* ]]) && export BUILD_CTEST_LARGE=true script: - - cmake -S . --preset=$CMAKE_PRESET -Wno-dev $CMAKE_ARGS + - cmake --preset=$CMAKE_PRESET -Wno-dev $CMAKE_ARGS - | if [[ -z "$TARGETS" ]]; then diff --git a/scripts/ci/extends/template-build-win.yml b/scripts/ci/extends/template-build-win.yml index 0eeac0e89b1cdca808a8bd947902167365a1deaa..3aac32f9b7a9fe415adcd2b50874f4fbc5cc5a1b 100644 --- a/scripts/ci/extends/template-build-win.yml +++ b/scripts/ci/extends/template-build-win.yml @@ -15,7 +15,7 @@ - mkdir build # Create symlink https://stackoverflow.com/a/34905638/80480 - cmd /c mklink /D build\$env:CMAKE_PRESET $env:CI_PROJECT_DIR\$build_directory_full - - $cmake_cmd = "cmake -S . --preset=$env:CMAKE_PRESET -Wno-dev $env:CMAKE_ARGS" + - $cmake_cmd = "cmake --preset=$env:CMAKE_PRESET -Wno-dev $env:CMAKE_ARGS" - $cmake_cmd - Invoke-Expression $cmake_cmd - cmake --build --preset=$env:CMAKE_PRESET --target package | Tee-Object -FilePath $log_file diff --git a/web/content/docs/devguide/advanced/offline-build.md b/web/content/docs/devguide/advanced/offline-build.md index 096880eadd15ee3429688458c027d9f117ca2ca5..11860d95f7e94563168c2452ff832bc19aa6d0aa 100644 --- a/web/content/docs/devguide/advanced/offline-build.md +++ b/web/content/docs/devguide/advanced/offline-build.md @@ -29,7 +29,7 @@ On the [cpm package page](https://gitlab.opengeosys.org/ogs/ogs/-/packages/1) do Unarchive the cpm cache into a directory. Configure OGS as usual but point to the extracted cpm cache: ```bash -cmake -S . --preset release -DCPM_SOURCE_DIR=./path/to/cpm +cmake --preset release -DCPM_SOURCE_DIR=./path/to/cpm ``` There will be some CMake warnings from CPM regarding missing git repositories in the cache. You can ignore them. @@ -48,5 +48,5 @@ On the [external dependencies package page](https://gitlab.opengeosys.org/ogs/og Unarchive the external dependencies cache into a directory. Configure OGS as usual but point to the extracted external dependencies cache: ```bash -cmake -S . --preset release -DOGS_EXTERNAL_DEPENDENCIES_CACHE=./path/to/ext +cmake --preset release -DOGS_EXTERNAL_DEPENDENCIES_CACHE=./path/to/ext ``` diff --git a/web/content/docs/devguide/getting-started/build-configuration.md b/web/content/docs/devguide/getting-started/build-configuration.md index f9386d604186a4fa7cede62035e96debc8ddfb51..b931580523d3ff90b57a53f9ff1ac6e5d3d953a1 100644 --- a/web/content/docs/devguide/getting-started/build-configuration.md +++ b/web/content/docs/devguide/getting-started/build-configuration.md @@ -41,11 +41,11 @@ We provide CMake configuration presets defined in [CMakePresets.json](https://gi ### Configure with a preset -In the source directory run `cmake`: +In the source directory run `cmake` with a preset: ```bash -# Usage: cmake -S [path-to-source] --preset=[preset-name] -cmake -S . --preset release +# Usage: cmake --preset=[preset-name] +cmake --preset release ``` This will create a build-directory outside the source tree (`../build/release`) with the default CMake options and the Release configuration. @@ -93,7 +93,7 @@ You can create a `CMakeUserPresets.json` file in the root source directory with To use the Ninja build tool you need to configure in the Visual Studio command line. In the Start menu under *Visual Studio {{< dataFile "versions.minimum_version.msvc.year" >}}* you find a application link to *x64 Native Tools Command Prompt for VS {{< dataFile "versions.minimum_version.msvc.year" >}}*. This starts a command line setup for Visual Studio 64-bit. Now you can use a Ninja preset: ```bash -cmake -S . --preset=release +cmake --preset=release ``` #### <i class="far fa-exclamation-triangle"></i> Multi-configuration with Conan and Visual Studio @@ -101,8 +101,8 @@ cmake -S . --preset=release With Conan one build directory corresponds to one configuration. If you want to have e.g. a release and a debug build you need to create two build directories. This is nothing new to Linux / GCC user but differs to Visual Studios default behavior having just one build-folder / project with different configurations. A typical Visual Studio setup with both Release and Debug configs would be initialized as follows: ```bash -cmake -S . --preset=msvc-release -cmake -S . --preset=msvc-debug +cmake --preset=msvc-release +cmake --preset=msvc-debug ``` Please also note that in Visual Studio you have to choose the correct configuration (i.e. when opening the solution-file in the release-folder you have to switch the Visual Studio configuration to **Release**)! @@ -151,7 +151,7 @@ CMake comes with a graphical tool called **cmake-gui**. You can find it in the * A more convenient way of running cmake on the command line is to use the `ccmake` tool. This is a shell tool but with some graphical user interface. To use it just run `ccmake` instead of `cmake`: ```bash -ccmake -S . --preset=release +ccmake --preset=release ``` First press <kbd>C</kbd> to **Configure**. You are now presented the available configuration options. You can navigate in the list with the cursor keys and toggle / alter options with <kbd>Enter</kbd>. You may also press <kbd>T</kbd> to toggle (previously hidden) advanced options. Press <kbd>C</kbd> again until the **Generate**-option becomes visible. Press <kbd>G</kbd> to generate the project files and exit `ccmake`. diff --git a/web/content/docs/devguide/testing/test-data.md b/web/content/docs/devguide/testing/test-data.md index dcdf1231842de79ca4a098a3a528fd5cc60d512c..43811b4e6372dd355fbd25a3f9def30f50645055 100644 --- a/web/content/docs/devguide/testing/test-data.md +++ b/web/content/docs/devguide/testing/test-data.md @@ -44,7 +44,7 @@ ctest --preset release -j 6 --label-regex Utils # run 6 tests in parallel which **To sum up:** from a clean source directory you can fully configure, build and test ogs with these 3 commands: ```bash -cmake -S . --preset release +cmake --preset release cmake --build --preset release ctest --preset release ```