[Engine] My Documentation is not Build #2007
-
Hey there, first of all thanks for building this awesome index! I love it and it's super helpful 👍 Now to the question. It seems that the documentation as described here is not built for my project Engine. I added the .spi.yml but do not have the DocC plugin in my Package.swift. I'm unsure what I'm doing wrong. Also my build output seems to be different from e.g. the bytes project which shows the documentation link: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 11 replies
-
Hi @Blackjacx , the problem is that you've specified a platform but got the name slightly wrong :) We're defaulting to build for macOS, so you don't actually have to specify it (and if you want to specify it explicitly, it needs to be I'll make a change so we default I've also raised a PR to fix this: Blackjacx/Engine#8 |
Beta Was this translation helpful? Give feedback.
Hi @Blackjacx , the problem is that you've specified a platform but got the name slightly wrong :)
We're defaulting to build for macOS, so you don't actually have to specify it (and if you want to specify it explicitly, it needs to be
macos-spm
ormacos-xcodebuild
).I'll make a change so we default
macos
tomacos-spm
– we don't actually need to be that strict when decoding this value.I've also raised a PR to fix this: Blackjacx/Engine#8