Pablo Hernandez-Cerdan

Results 114 comments of Pablo Hernandez-Cerdan

> Could you create a PR ? Yes, on its way.

> If I understand, you would like the user to see both files and directories .. but only be able to select directories ? Exactly

Thanks @hjmjohnson , hope this helps: ``` Linux (arch) cmake version 3.19.1 BUILD_SHARED_LIBS=OFF -G Ninja ... In case it helps too: No examples, no tests, and CMAKE_BUILD_TYPE: RelWithDebInfo ``` `cmake...

Just wondering: ```cmake add_custom_command ( OUTPUT ${HDF5_GENERATED_SOURCE_DIR}/H5Tinit.c ${HDF5_GENERATED_SOURCE_DIR}/gen_SRCS.stamp1 COMMAND ${CMAKE_CROSSCOMPILING_EMULATOR} $ ARGS ${HDF5_GENERATED_SOURCE_DIR}/H5Tinit.c COMMAND ${CMAKE_COMMAND} ARGS -E touch ${HDF5_GENERATED_SOURCE_DIR}/gen_SRCS.stamp1 DEPENDS H5detect ###

I have solved it removing the whole `else` that runs when `${HDF5_GENERATED_SOURCE_DIR}/H5Tinit.c` exists. So, CMake always recreates the file (and the stamps). So all this out: https://github.com/InsightSoftwareConsortium/ITK/blob/92b891d33ae9ee4fcd95055e74dff24a6b114d36/Modules/ThirdParty/HDF5/src/itkhdf5/src/CMakeLists.txt#L1017-L1037 What do you...

> Is this going to cause rebuilds all the time. Was that a question @hjmjohnson? In my case (ninja, and ccache) it doesn't.

Well, I don't think so @dani-lbnl. I am proposing that the GUI of the widget has a `save` option that gives you a string with all the options that define...

Makefile and CMakelists.txt can coexist with no problems. But CMakeLists.txt provide easier integration with other projects already using CMake. I have added the add_custom_target header-only to generate the header file...

> (Note that I just compiled the demo by hand, linking against the library generated by your CMake build.) Try building the demo with cmake: ``` cd build-folder; cmake -DAABBCC_BUILD_DEMOS:BOOL=ON...

> (Sorry if this isn't clear, but in your fork would one need to include a src/AABB_ND.cpp file for each dimension and then update the CMakeLists.txt file when building the...