Closed GoogleCodeExporter closed 9 years ago
There is nobody updating the cmakelists files.
Do you mind creating a patch?
Original comment by erwin.coumans
on 24 Nov 2012 at 11:10
Certainly
Original comment by alan.wit...@gmail.com
on 24 Nov 2012 at 11:23
The patch breaks the default builds in case you have several configurations
using the same source tree.
For example
c:\dev\bullet\win32_double
c:\dev\bullet\win64_double
c:\dev\bullet\win32_single
c:\dev\bullet\win64_single
would all overwrite the same library location in the source tree.
You can override the LIBRARY_OUTPUT_PATH using cmake-gui to the source tree if
that is what you want.
Also your patch will add the glut include folder to each project, that is not
desired.
So it looks like you can already do what you want using the current CMake
support (aside from the /MP option)
Thanks
Erwin
Original comment by erwin.coumans
on 25 Nov 2012 at 5:04
INCLUDE_DIRECTORIES(${GLUT_INCLUDE_DIR}) needs to be used somewhere, otherwise
it'll never find glut.h on Windows (unless of course you piggy back it onto
some other include_dir). So I guess you could put it in Demos/CMakeList.txt,
since every demo seems to include "GlutStuff.h"
Original comment by alan.wit...@gmail.com
on 25 Nov 2012 at 5:51
Attachments:
Glut is included in Bullet/Glut and the Windows version uses that.
Is that not working for you?
Original comment by erwin.coumans
on 25 Nov 2012 at 6:05
Ah, i see what happened. In cmake i saw the following messages:
WARNING: you are using the obsolete 'GLU' package, please use 'OpenGL' instead
Could NOT find GLUT (missing: GLUT_glut_LIBRARY GLUT_INCLUDE_DIR)
Win32 using Glut/glut32.lib
WARNING: you are using the obsolete 'GLU' package, please use 'OpenGL' instead
Could NOT find GLUT (missing: GLUT_INCLUDE_DIR)
I then went on a mission to fix those errors, but didn't realize it was already
working.
I guess the easiest way to fix it is to make your own version of FindGLUT.cmake
that overrides cmake's built-in one, since the glut structure is different from
what they expect. At this point it probably doesn't matter too much.
Original comment by alan.wit...@gmail.com
on 25 Nov 2012 at 6:29
I had a look at CMake's FindGlut.cmake and it is a mess.
That is why I switched to using premake long ago. Premake is better than cmake
in almost every perspective. I just keep cmake there because some people use
it, but I try to avoid spending time on it whenever possible.
I'll write a better replacement for Glut search under windows, without the
warnings/errors.
Original comment by erwin.coumans
on 25 Nov 2012 at 6:56
we just use our own Glut version, not the one in FindGlut mess
Original comment by erwin.coumans
on 17 Nov 2013 at 8:02
Original issue reported on code.google.com by
alan.wit...@gmail.com
on 17 Nov 2012 at 11:44