From 45011c4df35af901f507e8ca01aab8924a566bd7 Mon Sep 17 00:00:00 2001 From: Jerome Hue <jerome.hue@cea.fr> Date: Tue, 10 Sep 2024 17:08:42 +0200 Subject: [PATCH] Add up to date information to README.md --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3c35049f..ed44c2ea 100644 --- a/README.md +++ b/README.md @@ -29,4 +29,15 @@ pip install . -v ### Standard C++ Compilation -You will need to compile first the Core library before compiling the CPU one. +You will need to compile and install the [Core Library](https://gitlab.eclipse.org/eclipse/aidge/aidge_core) before compiling the CPU one. + +Once this has been done, you'll need run CMake with the +`CMAKE_INSTALL_PREFIX:PATH` flag, in order to indicate to CMake where +`aidge_core` has been installed : +```sh +cmake -DCMAKE_INSTALL_PREFIX:PATH=$(path_to_install_folder) $(CMAKE PARAMETERS) $(projet_root) + +make all +``` + +More detailed information is available in the [Aidge User Guide](https://eclipse.dev/aidge/source/GetStarted/install.html) -- GitLab