Cathedrale reorganization is functional

Added by Olivier Delannoy 12 months ago

After months without any visibility and months to get anything out, I am please to announce that we have reached a milestone.

The new build process is now in place it is relying on CMake as before but the layout of the code is quite different. We rely on a top level project called cathedrale_int. This project should contains at all time a working version of all project related to cathedrale. Every changes on all project of the stack is bringed into this super project.

Getting all the software and building it is reasonably straight forward.

git clone http://dev.dalfy.org/git/cathedrale_int.git 
cd cathedrale_int
git submodule update --init --recursive
cmake .
make
That's all you need to retrieve the whole code and build it. The only dependencies that you need to build the project is:
  • GIT
  • CMake
  • A recent GCC C++ compiler
  • A libC
  • The stdc++

Build from a linux host for a linux system is currently available. But look forward to be able to build for Windows from your linux box.


Comments