On 3/5/22 09:40, Christian Schoenebeck wrote:
On Dienstag, 1. März 2022 19:33:31 CET Christian Schoenebeck wrote:
On Dienstag, 1. März 2022 19:01:53 CET Rui Nuno Capela wrote:
hi every1,

Hi Rui,

for quite some time I've been noticing that windows builds are failing
(see subject) probably due to old autoconf/automake build system being
dropped in favor to now official cmake...

and one other thing: the front-page/web is no longer reflecting the *svn
updates, ever since this late Mon Nov 22 17:08:21 CET 2021, as it seems...

is there anything I can do to help?

As for the build errors: if you find some time, try to login to the CI page
and change the compilatation commands accordingly. cmake is already
installed. Otherwise I will have some time at the weekend to handle it.

I fear the current requirement is too high:

   CMake 3.15 or higher is required.  You are running version 3.13.4

Rui, please check if you can lower the cmake version requirement. If it is not
possible then I fear I have to leave this broken for months to come, as I
don't have time to update the server for this right now. Sorry.


hi Christian,

what you mean? this is what:

  cmake_minimum_required (VERSION 3.13)

cmake 3.15 is actually only required if you follow the build instructions on the homepage:

  cmake -B build && cmake --build build && cmake --install build

but may try the older way instead:

  cmake -B build && make -C build && make -C build install

or even older:

  mkdir build
  cd build
  cmake .. && make && make install


hth.
cheers
--
rncbc aka. Rui Nuno Capela
rn...@rncbc.org


_______________________________________________
Linuxsampler-devel mailing list
Linuxsampler-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linuxsampler-devel

Reply via email to