Closed catniptwinz closed 1 year ago
Fixed! Thanks for finding and reporting this. It was a left over of my efforts to create a completely cmake based build system. If you have a minute, feel free to check out the 'new_cmake_build-system' branch and report back how it works on Linux.
Thanks likewise! Tested and confirmed that the most recent commit is building as expected.
The 'new_cmake_build-system' branch appears to be working as well:
$ git clone --branch new_cmake_build-system --recurse-submodules https://github.com/v7b1/mi-UGens
$ mkdir build && cd build
$ cmake -DSC_PATH="[PATH TO SC SOURCE]" -DCMAKE_BUILD_TYPE="Release" ..
$ make
Building on Arch Linux (kernel 6.3.1-arch1-1) fails with:
It seems that this is due to the change to line 7 of CMakeLists.txt in 783e8d8. Reverting from:
set(MUTABLE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../../eurorack")
to:
set(MUTABLE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../eurorack")
Appears to resolve the issue.