Closed iAndyHD3 closed 1 year ago
Try delete build/CMakeCache.txt and regenerate again
I have test on may machine and works well:
I added a Q/A for this kind of errors:
Hope this is the solution: #1178 (Its the answer from halx99: Try delete build/CMakeCache.txt and regenerate again
)
Ok indeed deleting CMakeCache.txt works but I don't think this is a good solution. E.g if I have to build astc again in x64 I would probably need to delete the cache again. If you disagree feel free to close the issue, this is just my thought
Short answer: As long there is no "official" release version of axmol there, as long can somethings changed between axmol repository and your own repository clone. Hope its ok. axmol beta is stable as far as I feel.
Ok indeed deleting CMakeCache.txt works but I don't think this is a good solution. E.g if I have to build astc again in x64 I would probably need to delete the cache again. If you disagree feel free to close the issue, this is just my thought
That's cmake limitions, we can't deal it.
And sometimes you needs del whole build folder when the cmake generator changed, so the correct practice is use different build dir for different platform or architectures, e.g.
build_x86
build_x64
compiling my project (OpenGD), i get the following errors on thirdparty libs in x86
the cmake command
cmake -B build_x86 -A win32