Hristo Hristov

Results 93 comments of Hristo Hristov

This is probably (un)related: I have experienced the following issue - when renaming a folder on macOS (or maybe Linux) and the committing it it wasn't properly renamed (changing the...

> C:/TOOLS/MINGW64/LIB/GCC/X86_64-W64-MINGW32/5.3.0/INCLUDE/ I had some similar issue with MSVC and code analysis a while ago. The compiler apparently converts all paths to small letters if I recall correctly and I...

CMake should mean CMake/Ninja. *Original feedback on closed duped thread* > Please consider improving the integration of third party build system. Currently the most interesting combination is CMake/Ninja but that...

CMake just works. It is a build system generator. You want to use MSBuild you generate .sln and byild. You want ninja - it just works. You want make on...

Or you could use it with Visual Studio Code on Mac, Linux and Windows as I do. VSCode has a descent although lacking support compared to VS ( why did...

Or this could be generalized as: Enable easy support of 3rd party build systems and package managers. CppWinRT comes as a Nuget and it is impossible to use with Cmake...

Please don't do this in a open source library `UseTab: ForIndentation`

I made it build with Ninja here: https://github.com/jbeder/yaml-cpp/pull/674/commits/5eefba2b116910641b3131312790f477487d09a0 Unfortunately I couldn't get to build and pass the tests on Travis. I guess a serious change to the build environment is...

VS2017 15.8 supports debugging from the install directory without any extra configuration steps. How do they do it I have no idea but it works great. VS2017 can do all...

``` # Set installation path set (InstallationPath ${CMAKE_INSTALL_PREFIX}) if (option_ENGINE_LIBRARY_AS_SHARED) # Install targets install ( TARGETS ${PROJECT_NAME} RUNTIME DESTINATION ${InstallationPath} ) endif () # Install required files install ( FILES...