Benjamin Chrétien

Results 85 comments of Benjamin Chrétien

Indeed, at the end of `/usr/share/cmake-3.0/Modules/Compiler/GNU.cmake` (whatever the path for your distribution): ``` cmake if(NOT APPLE) set(CMAKE_INCLUDE_SYSTEM_FLAG_${lang} "-isystem ") endif() ``` If this is just it, we can simply patch...

Apparently, `-isystem` is supported. It may not have been the case [7 years ago](http://public.kitware.com/Bug/view.php?id=4462) when this was added, but I guess it is now... Someone with Mac OS X could...

Apparently, this was [finally fixed](https://cmake.org/Bug/view.php?id=15953) in CMake 3.6.

Indeed, we could then make a detailed installation process on [the website](http://www.roboptim.net/download.html).

Dear Ayusawa-san, Thanks for the quick answer. Don't worry about my name, I know it's a difficult one :-) For UTF-8 with BOM, this may be something that can be...

Note regarding CI support for Windows: I recently noticed that some open-source projects now use [AppVeyor](https://ci.appveyor.com), which could very roughly be seen as Travis for Windows.

Windows support is not available yet, although we are slowly getting there (cc @aescande).

Thanks for looking into this. Alas I don't think anyone shared any binary yet.

Indeed, I'll clean this up a bit. I recently added the possibility to precompile most of the templated classes, since they are now only templated on the matrix traits (dense/sparse)....

`ROBOPTIM_CORE_DEPRECATED` (which is equivalent to `__declspec (deprecated)` on Windows with MSVC) has to be at the beginning of function declarations/typedefs?