Skip to content
Snippets Groups Projects
Verified Commit 5aeaf5d6 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

DOC: update README_SETUP

parent 7bca36c6
No related branches found
No related tags found
1 merge request!4ENH: Allow insertion and deletion of single entities
Pipeline #10887 passed
Pipeline: caosdb-cppinttest

#10890

    ...@@ -48,13 +48,23 @@ as compiler. We use [cmake](https://cmake.org/download/) as build tool. ...@@ -48,13 +48,23 @@ as compiler. We use [cmake](https://cmake.org/download/) as build tool.
    and build the project. (You can open Tools/Command Line/Developer Command and build the project. (You can open Tools/Command Line/Developer Command
    Prompt and execute `msbuild libcaosdb.sln /property:Configuration=Release`) Prompt and execute `msbuild libcaosdb.sln /property:Configuration=Release`)
    ## Creating a Local Conan Build ## ### Creating a Local Conan Build ##
    Building and installing libcaosdb with Conan is just a single command: Building and installing libcaosdb with Conan is just a single command:
    `conan create . -s "compiler.libcxx=libstdc++11"` `conan create . -s "compiler.libcxx=libstdc++11"`
    For MacOS, you probably should adjust the option as mentioned above. For MacOS, you probably should adjust the option as mentioned above.
    ### Troubleshooting
    #### `conan install` Fails Due to Missing Prebuilts
    When `conan install` fails during the installation of the dependencies because
    a precompiled package is not available for your specific settings, try adding
    the `--build=missing` option: `conan install .. [ other options
    ] --build=missing`. This should download and compile the sources of the
    dependencies.
    ## Unit Tests ## Unit Tests
    ### Build ### Build
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment