Error while building after update
After updatin sources git pull --recurse-submodules i get error while executing cmake -DCMAKE_BUILD_TYPE=Release ..
if I purge old files and download sources by git clone --recursive https://github.com/degenerated1123/REGoth.git I can run cmake and compile with no errors. I'm pretty new to git, so i may be doing something wrong. cmake complains about missing files- I assume I could mess up updating submodules (even if console output indicates downloading some?)
And console output after downloading fresh files. output.txt
I don't see the error in the first output, but I'm not sure if git pull --recurse-submodules works.
I always do a normal git pull followed by git submodule update --init --recursive
It seems to work on relativity new source files. Older ones still missing some files. I'll wait for a few updates to see if it works,
When cloning the Repo, there are two ways:
-
git clone --recursive <git_url> -
git clone <git_url>git submodule update --init --recursive
But when a new submodule gets added (libdmusic was recently added) you need to init this submodule manually by running:
git submodule update --init --recursive