By default this project works with the conan package manager and using cmake as a build system wrapper.
To build the project please follow these steps:
- Install conan:
python -m pip install conan - Create a build direcotry in the checked out source code:
mkdir build - Change current directory to the build directory:
cd build - Install dependencies:
conan install .. --build missing - Build
conan build .. - Run the executable from build\bin\wpf_test.exe
You can specify the build type at step 4.
Use the --s build_type="Debug" switch to debug build.
conan install .. --build missing -s build_type=Debug
After step 4, a solution file will be generated at the build\ge_ai_app.sln path. You may open it and build from Visual Studio, but make sure that the buid configuration matches with the conan installs build configuration.