Audacium / audacium

Free and open-source audio editor
https://audacium.github.io/audacium/
Other
702 stars 34 forks source link

Typo in Wiki: Building for macOS running on Apple Silicon #87

Closed jacop5 closed 2 years ago

jacop5 commented 2 years ago

Since the correct generator name for Apple XCode is "Xcode", cmake won't run unless it is written with the right capitalisation. And also, no directory exists under audacium/audacium, so the source directory should be .. In the end, we should have:

$ cmake -G Xcode -T buildsystem=1 -Daudacity_use_mad=off -Daudacity_use_id3tag=off ..

Instead of:

$ cmake -GXCode -T buildsystem=1 -Daudacity_use_mad=off -Daudacity_use_id3tag=off ../audacium

AnErrupTion commented 2 years ago

also, no directory exists under audacium/audacium, so the source directory should be ..

Well, about that, if it's just "..", it will not work, it has to be "../audacium" (at least on Linux)

jacop5 commented 2 years ago
Schermata 2021-12-29 alle 18 11 44

If I use ../audacium it doesn't work, while if I use .. it does.

AnErrupTion commented 2 years ago

Well, sorry for the long wait, but I've gone ahead and corrected the changes in the wiki.