-
compiling my project (OpenGD), i get the following errors on thirdparty libs in x86 the cmake command
|
Beta Was this translation helpful? Give feedback.
Replies: 7 comments
-
Try delete build/CMakeCache.txt and regenerate again |
Beta Was this translation helpful? Give feedback.
-
I have test on may machine and works well: |
Beta Was this translation helpful? Give feedback.
-
I added a Q/A for this kind of errors: |
Beta Was this translation helpful? Give feedback.
-
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 |
Beta Was this translation helpful? Give feedback.
-
Short answer: |
Beta Was this translation helpful? Give feedback.
-
That's cmake limitions, we can't deal it. |
Beta Was this translation helpful? Give feedback.
-
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.
|
Beta Was this translation helpful? Give feedback.
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