Claus Klein

Results 179 comments of Claus Klein

what is about this, i.e _TAO/tests/Oneway_Send_Timeouts/main.cpp_ ```c++ ACE_auto_ptr_reset (server_, new Server (my_args.argc(), my_args.argv())); // change to? server_ = std::make_unique(my_args.argc(), my_args.argv()); ```

Hi, what is your opinion about this patch?

I use msys2 shell only (never mingw!) with this conan profile: ------------------------------------------------------------------- `klein@MSYS ~/.conan/profiles $ cat msys2 [build_requires] #NO! mingw_installer/1.0@conan/stable #NO! msys2_installer/latest@bincrafters/stable [settings] os_build=Windows os=Windows os.subsystem=msys2 arch=x86_64 arch_build=x86_64 compiler=gcc compiler.version=6.4...

What is the status of this issue? Would it make sense to prepare a PR with `cmake` build support (modern cmake!) https://pabloariasal.github.io/2018/02/19/its-time-to-do-cmake-right/

> why is it that cmake church members keep pushing their build system down other people's throats. are you getting paid for this? I use a lot of libraries and...

IMHO: `autoconf` and `makefiles` are not state of the art @rofl0r there is no `pkg-config` on Windows? - how do you use `configure` on windows command prompt? - how do...

something like this is missing: ```json "buildPresets": [ { "name": "test", "configurePreset": "test" }, { "name": "ninja-multi", "configurePreset": "ninja-multi" } ], "testPresets": [ { "name": "test", "configurePreset": "test", "output": {"outputOnFailure":...

@Jason5480 **I can't use it to configure the build!** ```bash bash-3.2$ git status On branch feature/ninja-multi-presets-support Your branch is up to date with 'Nikolas/feature/ninja-multi-presets-support'. nothing to commit, working tree clean...

with a little love, is seems better: ```bash bash-3.2$ cmake -S . --list-presets=all Available configure presets: "linux-gcc" - gcc "linux-clang" - clang Available build presets: "build-windows-msvc-debug" - Debug "build-windows-msvc-release" -...

**What is the concept behind your presets?** Missing `buildDir` but a `sourceDir` configured? Long and different `presetNames`? I would expect the same name for the same preset in `config, build,`...