My example: ``` mkdir $(ProjectPath)\$(IntermediateDirectory)\build && cd $(ProjectPath)\$(IntermediateDirectory)\build && cmake -G"MSYS Makefiles" -D"CMAKE_C_FLAGS='-march=i686 -mtune=generic -O2 -pipe'" -D"CMAKE_CXX_FLAGS='-march=i686 -mtune=generic -O2 -pipe -std=c++11'" -D"CMAKE_EXE_LINKER_FLAGS='-pipe'" -D"CMAKE_MODULE_LINKER_FLAGS='-pipe'" -D"CMAKE_SHARED_LINKER_FLAGS='-pipe'" -DCMAKE_INSTALL_PREFIX=$(ProjectPath)/$(IntermediateDirectory)/$(ProjectName) -DCMAKE_BUILD_TYPE=$(ConfigurationName) -DPOCO_UNBUNDLED=ON -DENABLE_MONGODB=OFF $(ProjectPath)/src ``` I think it would be nice to remove the restriction to 512 characters, as in my example it would be possible to insert more flags.