[CMake] Forcing finding FreeGLUT instead of the system GLUT on MacOS

2019-05-02 Thread ardi
Hi, I built and installed FreeGLUT in a custom location in my home directory (Note: it's a custom location, but I also have pkg-config installed on my PATH, and I did set it up so that when I do 'pkg-config --list-all' it successfully detects FreeGLUT in the location where I installed it). Now I'

Re: [CMake] MSVC: How to configure manifest settings?

2019-05-02 Thread J Decker
Depends on your generator. It can be as simple as including the .manifest in your sources list. Otherwise you may have to make an extra mt.exe invokation... https://github.com/d3x0r/SACK/blob/master/src/utils/service/CMakeLists.txt#L42-L53 On Thu, May 2, 2019 at 12:48 AM Fredrik Orderud wrote:

[CMake] MSVC: How to configure manifest settings?

2019-05-02 Thread Fredrik Orderud
Hi, I'm working on a project where I need to configure non-default manifest settings when building on Windows. More specifically, I need to inject the following tags in the generated vcxproj project: $(TargetName)$(TargetExt) AdditionalRegEntries.rgs Any advise on how to achieve this from CM